summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Tools/Statemachine/LiteStatemachine.cs
blob: f11986630a0b10f002f2038ffd5b6ec17525e30f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
using JetBrains.Annotations;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

namespace WK
{

    /// <summary>
    /// ÇáÁ¿¼¶×´Ì¬»ú
    /// </summary>
    public abstract class LiteStatemachine
    {


        public void GotoState(int target)
        {

        }

    }

}