Add missing export visibility attributes

This commit is contained in:
Mergul 2025-04-10 13:59:21 +02:00
parent 50fa2ce19c
commit 9b75772039
4 changed files with 18 additions and 8 deletions

View file

@ -3355,6 +3355,16 @@ export struct EntityManager
export ~this() nothrow @nogc
{
}
export void opAssign(ComponentInfo c)
{
size = c.size;
alignment = c.alignment;
init_data = c.init_data;
destroy_callback = c.destroy_callback;
create_callback = c.create_callback;
}
///Component size
ushort size;
///Component data alignment