Add Cook&Run and Run cooked game utilities to Game menu list for multilayer games testing

This commit is contained in:
Wojciech Figat
2022-09-07 11:52:11 +02:00
parent 94cacc8abc
commit 9a77517cb4
8 changed files with 154 additions and 7 deletions

View File

@@ -26,6 +26,16 @@ API_ENUM(Attributes="Flags") enum class BuildOptions
/// Shows the output directory folder on building end.
/// </summary>
ShowOutput = 1 << 0,
/// <summary>
/// Starts the cooked game build on building end.
/// </summary>
AutoRun = 1 << 1,
/// <summary>
/// Skips cooking logic and uses already cooked data (eg. to only use AutoRun or ShowOutput feature).
/// </summary>
NoCook = 1 << 2,
};
DECLARE_ENUM_OPERATORS(BuildOptions);