decs icon indicating copy to clipboard operation
decs copied to clipboard

High performance Entity/Component/System library.

Results 1 decs issues
Sort by recently updated
recently updated
newest added

struct TestCompB { virtual ~TestCompB() { } double f; }; meta.constructor = [](void* p) { new(p) T{}; }; meta.destructor = [](void* p) { ((T*)p)->~T(); // crash };