booster quasi fonctionnel
affichage seulement visible a travers un autre booster. ne se ramasse pas encore.
This commit is contained in:
20
SQCSim-common/booster.h
Normal file
20
SQCSim-common/booster.h
Normal file
@@ -0,0 +1,20 @@
|
||||
#ifndef BOOSTER_H__
|
||||
#define BOOSTER_H__
|
||||
#include "define.h"
|
||||
#include "vector3.h"
|
||||
|
||||
class Booster {
|
||||
public:
|
||||
Booster();
|
||||
Booster(Vector3f tpos, BOOST_TYPE ttype);
|
||||
~Booster();
|
||||
Vector3f GetPosition();
|
||||
BOOST_TYPE GetType();
|
||||
bool GetAvailability();
|
||||
void SetAvailability(bool value);
|
||||
private:
|
||||
Vector3f pos;
|
||||
BOOST_TYPE type;
|
||||
bool available;
|
||||
};
|
||||
#endif
|
Reference in New Issue
Block a user