uClassType* PreloadedResources_typeof()
{
    static uSStrong<uClassType*> type;
    if (type != NULL) return type;

    uTypeOptions options;
    options.FieldCount = 1;
    options.MethodTypeCount = 1;
    options.TypeSize = sizeof(uClassType);
    type = uClassType::New("Fuse.Entities.Designer.PreloadedResources", options);
    type->fp_cctor_ = PreloadedResources__cctor__fn;
    ::TYPES[2] = ::g::Uno::Collections::Dictionary_typeof()->MakeType(::g::Uno::String_typeof(), uObject_typeof());
    ::TYPES[3] = uObject_typeof();
    type->SetFields(0,
        ::g::Uno::Collections::Dictionary_typeof()->MakeType(::g::Uno::String_typeof(), uObject_typeof()), (uintptr_t)&::g::Fuse::Entities::Designer::PreloadedResources::resources_, uFieldFlagsStatic);
    type->Reflection.SetFunctions(2,
        new uFunction("Add`1", type, (void*)PreloadedResources__Add_fn, 0, true, type->U(0), 2, ::g::Uno::String_typeof(), type->U(0)),
        new uFunction("Get", NULL, (void*)PreloadedResources__Get_fn, 0, true, uObject_typeof(), 1, ::g::Uno::String_typeof()));
    return type;
}