h1-mod/src/client/game/scripting/event.hpp
2022-03-01 22:14:41 +02:00

14 lines
187 B
C++

#pragma once
#include "script_value.hpp"
#include "entity.hpp"
namespace scripting
{
struct event
{
std::string name;
entity entity{};
std::vector<script_value> arguments;
};
}