source: GTP-Internal/trunk/App/Demos/Illum/Ocean/Ship.h @ 1777

Revision 1777, 261 bytes checked in by szirmay, 18 years ago (diff)
Line 
1#pragma once
2
3class Ship
4{
5public:
6        Ship(void);
7public:
8        ~Ship(void);
9        void Move(double elapsedTime);
10        D3DXVECTOR2 position, direction;
11        bool accelerate;
12        bool brake;
13        bool turnLeft, turnRight;
14        D3DXVECTOR2 velocity;
15        double angularVelocity;
16};
Note: See TracBrowser for help on using the repository browser.