almoos dere
This commit is contained in:
@@ -4,12 +4,7 @@ Booster::Booster()
|
||||
{
|
||||
}
|
||||
|
||||
Booster::Booster(Vector3f tpos, BOOST_TYPE ttype)
|
||||
{
|
||||
pos = tpos;
|
||||
type = ttype;
|
||||
available = true;
|
||||
}
|
||||
Booster::Booster(Vector3f tpos, BOOST_TYPE ttype, uint64_t id): m_id(id), pos(tpos), type(ttype){}
|
||||
|
||||
Booster::~Booster()
|
||||
{
|
||||
@@ -26,6 +21,11 @@ BOOST_TYPE Booster::GetType()
|
||||
return type;
|
||||
}
|
||||
|
||||
uint64_t Booster::GetId() const
|
||||
{
|
||||
return m_id;
|
||||
}
|
||||
|
||||
bool Booster::GetAvailability()
|
||||
{
|
||||
return available;
|
||||
@@ -34,5 +34,6 @@ bool Booster::GetAvailability()
|
||||
void Booster::SetAvailability(bool value)
|
||||
{
|
||||
available = value;
|
||||
modified = true;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user