9 lines
236 B
C#
Raw Normal View History

2020-03-02 02:26:06 +01:00
namespace UnityAtoms.BaseAtoms
2018-10-30 20:05:06 +01:00
{
2019-10-15 22:32:06 +02:00
/// <summary>
/// Action of type `int`. Inherits from `AtomAction&lt;int&gt;`.
/// </summary>
2019-10-14 16:51:54 +02:00
[EditorIcon("atom-icon-purple")]
public abstract class IntAction : AtomAction<int> { }
}