Must be on a 4-byte alignment
| 6 | { |
| 7 | // Must be on a 4-byte alignment |
| 8 | class COrder |
| 9 | { |
| 10 | public: |
| 11 | BW::COrder* prev; |
| 12 | BW::COrder* next; |
| 13 | u16 orderID; |
| 14 | u16 unitType; |
| 15 | BW::Target target; |
| 16 | }; |
| 17 | |
| 18 | static_assert( sizeof(COrder) == 20, "BW::COrder is incorrect." ); |
| 19 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected