You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
364 B
C#
16 lines
364 B
C#
using D2D.Utilities;
|
|
using D2D.Utils;
|
|
using TMPro;
|
|
using UnityEngine;
|
|
|
|
namespace D2D.UI
|
|
{
|
|
[CreateAssetMenu(fileName = "UISettings", menuName = "SO/UISettings")]
|
|
public class UISettings : SingletonData<UISettings>
|
|
{
|
|
[Header("Level windows")]
|
|
public float winWindowOpenDelay = 1;
|
|
public float loseWindowOpenDelay = 1;
|
|
}
|
|
}
|