rise-and-swine/Assets/Scripts/Assembly-CSharp/GameLevelLoaded.cs
2023-02-25 23:04:03 -05:00

12 lines
241 B
C#

public class GameLevelLoaded : EventManager.Event
{
public GameLevelLoaded(int levelIndex, int episodeIndex)
{
this.levelIndex = levelIndex;
this.episodeIndex = episodeIndex;
}
public int levelIndex;
public int episodeIndex;
}