21 lines
		
	
	
		
			214 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			214 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #ifndef ENTITY_H
 | |
| #define ENTITY_H
 | |
| 
 | |
| #include "Vector.h"
 | |
| 
 | |
| class Entity
 | |
| {
 | |
| private:
 | |
| 	Vec2 pos, spe, acc;
 | |
| 
 | |
| public:
 | |
| 	Entity();
 | |
| 	Entity(Vec2, Vec2, Vec2);
 | |
| 
 | |
| 	void Debug() const;
 | |
| 	
 | |
| 	void Update();
 | |
| };
 | |
| 
 | |
| #endif /* ENTITY_H */
 |