CTT/Unity/Assets/Model/Core/Object/IAwakeSystem.cs

99 lines
1.4 KiB
C#
Raw Normal View History

2021-04-08 20:09:59 +08:00
using System;
namespace ET
{
public interface IAwakeSystem
{
Type Type();
}
public interface IAwake
{
void Run(object o);
}
public interface IAwake<A>
{
void Run(object o, A a);
}
public interface IAwake<A, B>
{
void Run(object o, A a, B b);
}
public interface IAwake<A, B, C>
{
void Run(object o, A a, B b, C c);
}
public interface IAwake<A, B, C, D>
{
void Run(object o, A a, B b, C c, D d);
}
[ObjectSystem]
public abstract class AwakeSystem<T> : IAwakeSystem, IAwake
{
public Type Type()
{
return typeof(T);
}
public void Run(object o)
{
this.Awake((T)o);
}
public abstract void Awake(T self);
}
[ObjectSystem]
public abstract class AwakeSystem<T, A> : IAwakeSystem, IAwake<A>
{
public Type Type()
{
return typeof(T);
}
public void Run(object o, A a)
{
this.Awake((T)o, a);
}
public abstract void Awake(T self, A a);
}
[ObjectSystem]
public abstract class AwakeSystem<T, A, B> : IAwakeSystem, IAwake<A, B>
{
public Type Type()
{
return typeof(T);
}
public void Run(object o, A a, B b)
{
this.Awake((T)o, a, b);
}
public abstract void Awake(T self, A a, B b);
}
[ObjectSystem]
public abstract class AwakeSystem<T, A, B, C> : IAwakeSystem, IAwake<A, B, C>
{
public Type Type()
{
return typeof(T);
}
public void Run(object o, A a, B b, C c)
{
this.Awake((T)o, a, b, c);
}
public abstract void Awake(T self, A a, B b, C c);
}
}