14 lines
211 B
C++
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;
|
|
};
|
|
}
|