diff options
Diffstat (limited to 'Source/Asura.Engine/Scripting/Portable.h')
-rw-r--r-- | Source/Asura.Engine/Scripting/Portable.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Source/Asura.Engine/Scripting/Portable.h b/Source/Asura.Engine/Scripting/Portable.h new file mode 100644 index 0000000..ae36cc2 --- /dev/null +++ b/Source/Asura.Engine/Scripting/Portable.h @@ -0,0 +1,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
\ No newline at end of file |