Small change

This commit is contained in:
Federico Cecchetto
2021-06-26 00:42:00 +02:00
parent bdfd37de35
commit 44886c8f9f
4 changed files with 26 additions and 2 deletions

View File

@ -6,6 +6,8 @@
namespace scripting
{
class entity;
class array;
class function;
class script_value
{
@ -29,6 +31,10 @@ namespace scripting
script_value(const vector& value);
script_value(const array& value);
script_value(const function& value);
template <typename T>
bool is() const;