blob: 052078a62ae6703b49856e308d2dbfbd54552787 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __ASURA_BOX2D_MODULE_H__
#define __ASURA_BOX2D_MODULE_H__
#include <asura-utils/module.h>
namespace AsuraEngine
{
class Box2DModule ASURA_FINAL : public Module
{
public:
};
}
#endif
|