1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/csharp/object.hpp

13 lines
174 B
C++
Raw Normal View History

2024-05-01 19:09:43 -03:00
#ifndef XNA_CSHARP_OBJECT_HPP
#define XNA_CSHARP_OBJECT_HPP
#include "../default.hpp"
namespace xna {
class Object {
public:
virtual sptr<Type> GetType();
};
}
#endif