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