forked from Shardstone/trail-into-darkness
14 lines
355 B
C#
14 lines
355 B
C#
using System;
|
|
using UnityEngine;
|
|
|
|
namespace Nox.Game {
|
|
[CreateAssetMenu(fileName = "AdventureSettings", menuName = "Nox/AdventureSettings")]
|
|
public class AdventureSettings : ScriptableObject {
|
|
public int dayLength = 10;
|
|
public int maxSupplies = 20;
|
|
|
|
[Header("Party Data")]
|
|
public float partyBaseSpeed = 3f;
|
|
}
|
|
}
|