BITFALL/Assets/Artists/Scripts/Equip/UniversalUseControllerState.cs

24 lines
392 B
C#
Raw Normal View History

2023-10-20 22:46:14 +08:00
using System;
2023-10-20 19:31:12 +08:00
using System.Collections;
using System.Collections.Generic;
2023-10-20 22:46:14 +08:00
using BITKit.StateMachine;
2023-10-20 19:31:12 +08:00
using UnityEngine;
namespace BITFALL.Entities.Equipment.Universal.States
{
2023-10-20 22:46:14 +08:00
[Serializable]
2023-10-20 19:31:12 +08:00
public sealed class Draw:UseState
{
2023-10-20 22:46:14 +08:00
2023-10-20 19:31:12 +08:00
}
2023-10-20 22:46:14 +08:00
[Serializable]
2023-10-20 19:31:12 +08:00
public sealed class Use:UseState
{
2023-10-20 22:46:14 +08:00
2023-10-20 19:31:12 +08:00
}
2023-10-20 22:46:14 +08:00
[Serializable]
2023-10-20 19:31:12 +08:00
public sealed class Exit:UseState
{
}
}