Newer
Older
HierarchicalFSM-Unity3D / Assets / Scripts / Interfaces / IUpdatable.cs
@Rackday Rackday on 14 Aug 191 bytes Major Update
using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public interface IUpdatable
{
    public void GAwake();
    public void GStart();
    public void GUpdate();
}