Correct some usages of COrder
This commit is contained in:
parent
4aa51a64b6
commit
d4f9470704
1 changed files with 2 additions and 2 deletions
|
@ -16,7 +16,7 @@ struct SOrderUnitPair
|
|||
{}
|
||||
|
||||
// Multi parameter constructor
|
||||
SOrderUnitPair( CUnit&& u, COrder o )
|
||||
SOrderUnitPair( CUnit&& u, SOrder o )
|
||||
: unit ( std::move(u) )
|
||||
, order ( o )
|
||||
{}
|
||||
|
@ -30,7 +30,7 @@ struct SOrderUnitPair
|
|||
}
|
||||
|
||||
CUnit unit; // The unit
|
||||
COrder order; // Order for this unit from this turn
|
||||
SOrder order; // Order for this unit from this turn
|
||||
};
|
||||
|
||||
// Typedef for a vector of these unit pairs
|
||||
|
|
Loading…
Add table
Reference in a new issue