iw5-mod/src/game/scripting/event.hpp

17 lines
221 B
C++
Raw Normal View History

2019-01-20 07:21:43 -05:00
#pragma once
#include "game/game.hpp"
namespace game
{
namespace scripting
{
class event final
{
public:
std::string name;
unsigned int entity_id;
std::vector<native::VariableValue> arguments;
};
}
}