diff options
Diffstat (limited to 'Tests/VSWinStorePhone/Direct3DApp1/BasicTimer.h')
-rw-r--r-- | Tests/VSWinStorePhone/Direct3DApp1/BasicTimer.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/Tests/VSWinStorePhone/Direct3DApp1/BasicTimer.h b/Tests/VSWinStorePhone/Direct3DApp1/BasicTimer.h index 56bd398..ccbbcda 100644 --- a/Tests/VSWinStorePhone/Direct3DApp1/BasicTimer.h +++ b/Tests/VSWinStorePhone/Direct3DApp1/BasicTimer.h @@ -52,13 +52,19 @@ public: // Update(). property float Total { - float get() { return m_total; } + float get() + { + return m_total; + } } // Duration in seconds between the previous two calls to Update(). property float Delta { - float get() { return m_delta; } + float get() + { + return m_delta; + } } private: |