Major Changes including Options menu, logic blocks, modding system, and more.

This commit is contained in:
2026-08-06 01:28:52 -04:00
parent c9ac4641a0
commit b58acff195
90 changed files with 4065 additions and 485 deletions

View File

@@ -0,0 +1,25 @@
namespace FoodFactory;
public abstract partial record AppLogicState
{
public static class Output
{
public readonly record struct StartLoadingSaveFile();
// public readonly record struct StartLoadingSaveFile(LoadGameArgs Save);
public readonly record struct SetUpGameScene;
public readonly record struct ShowGameCreationWindow;
// public readonly record struct HideGameCreationWindow;
public readonly record struct ShowMainMenu;
public readonly record struct ShowOptionMenu;
public readonly record struct ShowModsMenu;
// public readonly record struct ShowHideMenu;
public readonly record struct PlayGame;
public readonly record struct ShowGame;
// public readonly record struct HideGame;
public readonly record struct RemoveExistingGame;
public readonly record struct ShowGameLoadingWindow;
public readonly record struct QuitGame;
// public readonly record struct HideGameLoadingWindow;
}
}