9 lines
227 B
C#
9 lines
227 B
C#
|
|
using System;
|
|||
|
|
|
|||
|
|
public static class ActionExtensions {
|
|||
|
|
|
|||
|
|
public static Action EmptyAction = () => {};
|
|||
|
|
public static Action<float> EmptyActionFloat = f => {};
|
|||
|
|
public static Action<bool> EmptyActionBool = b => {};
|
|||
|
|
}
|