mirror of
https://github.com/ENSL/NS.git
synced 2024-11-15 09:21:54 +00:00
4f13237895
Change CRLF to LF in repo.
49 lines
No EOL
961 B
C++
49 lines
No EOL
961 B
C++
#ifndef AVH_BUILDABLE_H
|
|
#define AVH_BUILDABLE_H
|
|
|
|
#include "AvHTechID.h"
|
|
#include "AvHConstants.h"
|
|
|
|
// Interface type class, don't inherit off anything
|
|
class AvHBuildable
|
|
{
|
|
public:
|
|
AvHBuildable(AvHTechID inTechID);
|
|
|
|
virtual int GetBuilder() const;
|
|
|
|
virtual bool GetHasBeenBuilt() const;
|
|
|
|
virtual bool GetIsTechActive() const = 0;
|
|
|
|
virtual bool GetSupportsTechID(AvHTechID inTechID) const;
|
|
|
|
virtual AvHTeamNumber GetTeamNumber() const = 0;
|
|
|
|
virtual AvHTechID GetTechID() const;
|
|
|
|
virtual void SetTechID(AvHTechID inTechID);
|
|
|
|
virtual void SetConstructionComplete(bool inForce = false) = 0;
|
|
|
|
virtual void SetHasBeenKilled();
|
|
|
|
virtual void SetBuilder(int inEntIndex);
|
|
|
|
virtual void SetHasBeenBuilt();
|
|
|
|
virtual void SetResearching(bool inState);
|
|
|
|
virtual void TriggerAddTech() const;
|
|
|
|
virtual void TriggerRemoveTech() const;
|
|
|
|
private:
|
|
AvHTechID mTechID;
|
|
|
|
int mBuilder;
|
|
|
|
bool mHasBeenBuilt;
|
|
};
|
|
|
|
#endif |