forked from Shardstone/trail-into-darkness
First commit on my server, yey!
This commit is contained in:
16
Assets/Code/Core/PlayModeSettings.cs
Normal file
16
Assets/Code/Core/PlayModeSettings.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
using System;
|
||||
using UnityEngine;
|
||||
using UnityEngine.AddressableAssets;
|
||||
|
||||
namespace Nox.Core {
|
||||
[CreateAssetMenu(fileName = "GameModeSettings", menuName = "Nox/Database/General/GameModeSettings")]
|
||||
public class PlayModeSettings : ScriptableObject {
|
||||
public PlayModeData[] gameModeData;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class PlayModeData {
|
||||
public PlayMode playMode;
|
||||
public AssetReference scene;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user