unity-atoms/Source/MonoHooks/OnFixedUpdateHook.cs
Jeff Campbell e5f6659eda Removed unused namepaces
* Removed unused namespaces across all files in Unity.Atoms assembly.
* Removed unused namspaces in runtime and Test assembly code.
2019-04-07 11:15:23 +02:00

10 lines
169 B
C#

namespace UnityAtoms
{
public class OnFixedUpdateHook : VoidHook
{
private void FixedUpdate()
{
OnHook(new Void());
}
}
}