blob: ae36cc2367de06f9c1b0526a999f8dbb9ba348a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef __ASURA_ENGINE_PORTABLE_H__
#define __ASURA_ENGINE_PORTABLE_H__
#include "Object.h"
namespace AsuraEngine
{
namespace Scripting
{
class Portable : virtual public Object
{
public:
Portable();
virtual ~Portable();
};
}
}
#endif
|