h1-mod/src/client/game/scripting/event.hpp

14 lines
187 B
C++
Raw Normal View History

2022-03-01 15:14:41 -05:00
#pragma once
#include "script_value.hpp"
#include "entity.hpp"
namespace scripting
{
struct event
{
std::string name;
entity entity{};
std::vector<script_value> arguments;
};
}