Changeset 1310 for trunk/orbital/orbital.h
- Timestamp:
- Apr 29, 2012, 11:55:32 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/orbital/orbital.h
r1308 r1310 1 // 2 // Orbital 3 // 4 // Copyright: (c) 2012 Various People 5 // 6 1 7 #if !defined __ORBITAL_H__ 2 8 #define __ORBITAL_H__ … … 15 21 16 22 protected: 17 virtual void TickGame(float deltams);18 virtual void TickDraw(float deltams);23 virtual void TickGame(float seconds); 24 virtual void TickDraw(float seconds); 19 25 20 26 private: … … 25 31 float m_roll_angle_speed; 26 32 27 33 float m_horizontal_angle; 28 34 float m_vertical_angle; 29 35 float m_roll_angle; 30 36 31 37 mat4 m_modelview, m_proj; 32 38 mat3 m_normalmat; 33 39
Note: See TracChangeset
for help on using the changeset viewer.