mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 10:52:22 +01:00
fixed editing bug
This commit is contained in:
@@ -154,4 +154,34 @@ FORCEINLINE bool IsValidChecked(const UObject* Test)
|
||||
// return false;
|
||||
|
||||
return true; // FInternalUObjectBaseUtilityIsValidFlagsChecker::CheckObjectValidBasedOnItsFlags(Test);
|
||||
}
|
||||
}
|
||||
|
||||
class Test
|
||||
{
|
||||
// IMPLICITLY: Test() { VFT = TestVFT }
|
||||
// IMPLICITLY: void** VFT // 0x0
|
||||
virtual void func() {}
|
||||
virtual void people() {}
|
||||
};
|
||||
|
||||
/*
|
||||
|
||||
TestVFT:
|
||||
|
||||
Test::func
|
||||
Test::people
|
||||
|
||||
HelloVFT:
|
||||
|
||||
Hello::func
|
||||
Test::people
|
||||
Hello::func2
|
||||
|
||||
*/
|
||||
|
||||
class Hello : Test
|
||||
{
|
||||
// IMPLICITLY: Hello() { VFT = HelloVFT }
|
||||
void func() override { /**/ }
|
||||
virtual void func2() {}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user