mirror of
https://github.com/sp-tarkov/launcher.git
synced 2025-02-13 08:50:43 -05:00
19 lines
267 B
C#
19 lines
267 B
C#
/* LauncherAction.cs
|
|
* License: NCSA Open Source License
|
|
*
|
|
* Copyright: SPT
|
|
* AUTHORS:
|
|
* waffle.lord
|
|
*/
|
|
|
|
|
|
namespace SPT.Launcher.Models.Launcher
|
|
{
|
|
public enum LauncherAction
|
|
{
|
|
MinimizeAction,
|
|
DoNothingAction,
|
|
ExitAction
|
|
}
|
|
}
|