8 lines
114 B
C#
8 lines
114 B
C#
|
|
namespace LANCommander.Server.Settings.Enums;
|
||
|
|
|
||
|
|
public enum LauncherPlatform
|
||
|
|
{
|
||
|
|
Windows,
|
||
|
|
Linux,
|
||
|
|
macOS,
|
||
|
|
}
|