15 lines
233 B
C#
15 lines
233 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
using UnityEngine.Tilemaps;
|
||
|
|
||
|
[CreateAssetMenu]
|
||
|
public class TileData : ScriptableObject
|
||
|
{
|
||
|
|
||
|
public TileBase[] Tiles;
|
||
|
public bool walkable;
|
||
|
|
||
|
|
||
|
}
|