KitchenChaos/Assets/Scripts/EventArgs.cs

17 lines
285 B
C#

using System;
using static StoveCounter;
public class RecipeEventArgs : EventArgs
{
public RecipeSO RecipeSO;
}
public class StateChangedEventArgs : EventArgs
{
public State State;
}
public class SelectedCounterChangedEventArgs : EventArgs
{
public BaseCounter SelectedCounter;
}