iw5-mod/src/game/scripting/event.hpp
2019-09-27 22:35:57 +02:00

14 lines
211 B
C++

#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;
};
}