Guest User

Untitled

a guest
Jun 14th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public IEnumerable<StatePortion> InstantState {
  2. get {
  3. yield return new WorldParameters((short)_width, (short)_height);
  4. foreach (var unit in _units.Values)
  5. yield return PositionOf(unit);
  6. }
  7. }
Add Comment
Please, Sign In to add comment