diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-02-15 07:22:26 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-02-15 07:22:26 +0000 |
| commit | 3216298d1f0d3a8ec890512f1fe74506f27e910d (patch) | |
| tree | 90284db7c0a4ed02e3bcec7daef595f067113089 /Common/NativeApp/include | |
| parent | Added tests (diff) | |
| parent | Updated project's title (diff) | |
| download | DiligentEngine-3216298d1f0d3a8ec890512f1fe74506f27e910d.tar.gz DiligentEngine-3216298d1f0d3a8ec890512f1fe74506f27e910d.zip | |
Merge branch 'master' of https://github.com/DiligentGraphics/DiligentEngine
Diffstat (limited to 'Common/NativeApp/include')
| -rw-r--r-- | Common/NativeApp/include/IOS/IOSAppBase.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Common/NativeApp/include/IOS/IOSAppBase.h b/Common/NativeApp/include/IOS/IOSAppBase.h index 49e6089..181cdf9 100644 --- a/Common/NativeApp/include/IOS/IOSAppBase.h +++ b/Common/NativeApp/include/IOS/IOSAppBase.h @@ -32,6 +32,9 @@ public: using AppBase::Update; void Update(); virtual void OnGLContextCreated(void *eaglLayer) = 0; + virtual void OnTouchBegan(float x, float y){} + virtual void OnTouchMoved(float x, float y){} + virtual void OnTouchEnded(float x, float y){} protected: Diligent::Timer timer; |
