IState.cs 195 B

1234567891011
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using UnityEngine;
  5. public interface IState: IDisposable
  6. {
  7. void Enter();
  8. void Update(float t);
  9. void Exit();
  10. }