summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Avatar/States/UberState.cs
blob: a0b6d9403f0fd9f349b2922f43653c2c28f022fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

// 一个角色只能有一个uber state,用来处理状态的自动切换
public abstract class UberState : StateBase
{
    public abstract void OnUpdate();

    public abstract void OnPhysicsUpdate();

}