2019-05-29 18:52:27 +02:00
|
|
|
using UnityEngine;
|
|
|
|
|
|
|
|
namespace UnityAtoms
|
|
|
|
{
|
|
|
|
[CreateAssetMenu(menuName = "Unity Atoms/Events/Int", fileName = "IntEvent")]
|
2019-09-25 21:05:06 +02:00
|
|
|
public sealed class IntEvent : AtomEvent<int> { }
|
2019-05-29 18:52:27 +02:00
|
|
|
}
|