KitchenChaos/Assets/Scripts/EventArgs.cs

14 lines
294 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;
}