1234567891011121314151617 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- //TODO
- public class PlayAreaNotEnoughState : AbstractPlayAreaState<SafetyAreaMono>
- {
- public override void OnStateEnter(object data)
- {
- }
- public override void OnStateExit(object data)
- {
- }
- }
|