using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
[CreateAssetMenu(menuName = "Major Project/Map Generation/Section List")]
|
|
public class SectionList : ScriptableObject
|
|
{
|
|
public List<MapSection> sectionList;
|
|
}
|