1234567891011121314151617181920212223242526 |
- using System.Collections;
- using System.Collections.Generic;
- using UnityEngine;
- public class StateBasic : IState
- {
- public void Dispose()
- {
-
- }
- public void Enter()
- {
-
- }
- public void Update(float t)
- {
-
- }
- public void Exit()
- {
-
- }
- }
|