using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(menuName = "FREG/Tile")]
|
|
public class TileData : ScriptableObject
|
|
{
|
|
public TileManager.TileTypes tileType;
|
|
|
|
public GameObject prefab;
|
|
}
|