mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
13 lines
218 B
C++
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;
|
||
|
}
|
||
|
}
|