- using UnityEngine;
- using UnityEngine.AddressableAssets;
- [CreateAssetMenu(fileName = "RoomDataSO", menuName = "Map/RoomDataSO")]
- public class RoomDataSO : ScriptableObject
- {
- public Sprite roomIcon;
- public RoonType roomType;
- public AssetReference sceneToLoad;
- }
|