mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
13 lines
174 B
C++
13 lines
174 B
C++
|
#ifndef XNA_CSHARP_OBJECT_HPP
|
||
|
#define XNA_CSHARP_OBJECT_HPP
|
||
|
|
||
|
#include "../default.hpp"
|
||
|
|
||
|
namespace xna {
|
||
|
class Object {
|
||
|
public:
|
||
|
virtual sptr<Type> GetType();
|
||
|
};
|
||
|
}
|
||
|
|
||
|
#endif
|