|
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;
|
|
} |