1
This commit is contained in:
@@ -1,4 +1,6 @@
|
||||
namespace BITKit
|
||||
using System;
|
||||
|
||||
namespace BITKit
|
||||
{
|
||||
|
||||
public interface IAwake { void OnAwake(); }
|
||||
@@ -23,7 +25,11 @@
|
||||
public interface IFixedUpdate { void OnFixedUpdate(float deltaTime); }
|
||||
public interface ILateUpdate { void OnLateUpdate(float deltaTime); }
|
||||
public interface IDestroy { void OnDestroyComponent(); }
|
||||
|
||||
[Serializable]
|
||||
public struct EmptyAction : IAction
|
||||
{
|
||||
public void Execute() { }
|
||||
}
|
||||
|
||||
public class BehaviorUpdater
|
||||
{
|
||||
|
Reference in New Issue
Block a user