blob: 07e9f12f1f6683d08183c48b4f00f3f8a3db3e45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "../mesh2d.h"
using namespace std;
namespace AsuraEngine
{
namespace Graphics
{
LUAX_REGISTRY(Mesh2D)
{
}
LUAX_POSTPROCESS(Mesh2D)
{
}
}
}
|