35 lines
807 B
C#
35 lines
807 B
C#
using System;
|
|
using BlueWater.Items;
|
|
using UnityEngine;
|
|
|
|
namespace BlueWater
|
|
{
|
|
public static class EventManager
|
|
{
|
|
// Global events
|
|
#region Global events
|
|
|
|
public static Action<float, float, Color?, float> FadeInOut;
|
|
|
|
#endregion
|
|
|
|
// Tycoon events
|
|
#region Tycoon events
|
|
|
|
// 음료
|
|
// public static Action<string> OnDrinkRecipeAcquired;
|
|
// public static Action<LiquidData> OnDrinkRecipeSelected;
|
|
|
|
public static Action OnLiquidRegionEntered;
|
|
public static Action OnLiquidRegionExited;
|
|
|
|
public static Action<CocktailData> OnCocktailCompleted;
|
|
public static Action OnCocktailDiscarded;
|
|
|
|
|
|
// 요리
|
|
//public static Action<string> OnFoodRecipeAcquired;
|
|
|
|
#endregion
|
|
}
|
|
} |