Permalink
Switch branches/tags
Nothing to show
Find file
Fetching contributors…
Cannot retrieve contributors at this time
14 lines (9 sloc) 198 Bytes
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
[System.Serializable]
public class TileType
{
public string name;
public GameObject tileVisualPrefab;
}