1
0
Fork 0
This commit is contained in:
Piegames 2018-04-21 19:50:50 +02:00
parent f4d87b156a
commit bb476cc969

View file

@ -4,8 +4,12 @@ using UnityEngine;
public class Room : MonoBehaviour {
[SerializeField]
int width, height; // Gridsize for Generation
public enum TileType {
GROUND, WALL, DOOR
}
Vector2 position;
Map<Vector2, TileType> tiles;
List<Door> doors;
List<Transform> spawnpoints;