- Joined
- Feb 6, 2014
- Messages
- 2,466
Scenario: I have a library that has structs in it but I want to use that struct in a global block and be private (limited to the library) at the same time, example:
^The does not compile because it shouldn't be private struct.
Is it possible? I assume Vexorian made it possible.
JASS:
library A
globals
B something
endglobals
private struct B
endstruct
endlibrary
Is it possible? I assume Vexorian made it possible.