11 lines
172 B
C#
11 lines
172 B
C#
5 months ago
|
using UnityEngine;
|
||
|
|
||
|
namespace Unity.BossRoom.Infrastructure
|
||
|
{
|
||
|
[CreateAssetMenu]
|
||
|
public class IntVariable : ScriptableObject
|
||
|
{
|
||
|
public int Value;
|
||
|
}
|
||
|
}
|