Room.cs 201 B

12345678910111213
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. namespace jsonapi.Data
  4. {
  5. public class Room
  6. {
  7. public int width;
  8. public int height;
  9. public Point center;
  10. public Size tileSize;
  11. }
  12. }