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

14 lines
211 B
C++
Raw Normal View History

2019-09-27 16:35:57 -04:00
#pragma once
#include "game/game.hpp"
namespace game::scripting
{
class event final
{
public:
std::string name;
unsigned int entity_id;
std::vector<native::VariableValue> arguments;
};
}