mirror of
https://github.com/unity-atoms/unity-atoms.git
synced 2025-01-23 08:38:23 -05:00
13 lines
207 B
C#
13 lines
207 B
C#
namespace UnityAtoms
|
|
{
|
|
public abstract class VoidAction : GameAction<Void>
|
|
{
|
|
public override void Do(Void _)
|
|
{
|
|
Do();
|
|
}
|
|
|
|
public abstract void Do();
|
|
}
|
|
}
|