8 lines
202 B
C#
8 lines
202 B
C#
using UnityEngine;
|
|
|
|
namespace BaseGames.Core.Events
|
|
{
|
|
[CreateAssetMenu(menuName = "Events/Progression/ToolUsed")]
|
|
public class ToolUsedEventChannelSO : BaseEventChannelSO<ToolUsedPayload> { }
|
|
}
|