Add missing export visibility attributes
This commit is contained in:
parent
50fa2ce19c
commit
9b75772039
4 changed files with 18 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue