iw4x-client/src/Components/Modules/Flags.hpp

18 lines
271 B
C++
Raw Normal View History

2016-01-03 18:00:07 -05:00
namespace Components
{
class Flags : public Component
{
public:
Flags();
~Flags();
const char* GetName() { return "Flags"; };
static bool HasFlag(std::string flag);
private:
static std::vector<std::string> EnabledFlags;
static void ParseFlags();
};
}