summaryrefslogtreecommitdiff
path: root/Source/modules/asura-core/Graphics/binding/IndexBuffer.binding.cpp
blob: 151dc98604bf88cd3a3baba4b85757f016ab6df3 (plain)
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
#include "../IndexBuffer.h"

using namespace std;
using namespace Luax;

namespace_begin(AsuraEngine)
namespace_begin(Graphics)

		
		LUAX_REGISTRY(IndexBuffer)
		{
			LUAX_REGISTER_METHODS(state,
				{ "New", _New }
			);
		}

		LUAX_POSTPROCESS(IndexBuffer)
		{

		}

		// IndexBuffer.New()
		LUAX_IMPL_METHOD(IndexBuffer, _New)
		{
			LUAX_STATE(L);

			return 0;
		}

	}
}