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