1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/csharp/object.cpp
2024-05-01 19:09:43 -03:00

13 lines
218 B
C++

#include "object.hpp"
#include "type.hpp"
namespace xna {
sptr<Type> Object::GetType()
{
auto type = New<Type>();
type->FullName = "Object";
type->Namespace = "xna";
type->IsClass = true;
return type;
}
}