13 lines
309 B
C#
13 lines
309 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
[CreateAssetMenu(menuName = "KernelPanic/Dialogue/Settings")]
|
||
|
public class DialogueSettings : ScriptableObject
|
||
|
{
|
||
|
public float HideAfter => _hideAfter;
|
||
|
|
||
|
[SerializeField]
|
||
|
private float _hideAfter;
|
||
|
}
|