summaryrefslogtreecommitdiffstats
path: root/source/squirrelbindings/SquirrelObject.h
blob: a7a44d5310852a46bec1a504ff190f0b800c9d70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

#pragma once





#ifdef USE_SQUIRREL





#include <sqrat.h>





class SquirrelObject
{
public:
	SquirrelObject(Sqrat::Object a_Obj)
	{
		m_SquirrelObject = a_Obj;
	}

	Sqrat::Function GetFunction(const char *a_MethodName)
	{
		if(m_SquirrelObject.IsNull())
			return Sqrat::Function();

		Sqrat::Function method(m_SquirrelObject, a_MethodName);
		return method;
	}

	bool HasFunction(const char *a_MethodName)
	{
		return !this->GetFunction(a_MethodName).IsNull();
	}

protected:
	Sqrat::Object m_SquirrelObject;

};





#endif  // USE_SQUIRREL