ProjectDDD/Assets/_DDD/_Scripts/GameEvent/GameEvents.cs
2025-07-17 17:55:45 +09:00

24 lines
440 B
C#

using UnityEngine;
namespace DDD
{
public static class GameEvents
{
public static InteractionEvent Interaction = new InteractionEvent();
}
public static class RestaurantEvents
{
// Some events...
}
public static class VoyageEvents
{
// Some events...
}
public class InteractionEvent : IEvent
{
public GameObject Causer;
public GameObject Target;
}
}