first commit
This commit is contained in:
18
Nitrox.Launcher/Models/Design/ServerStartEventArgs.cs
Normal file
18
Nitrox.Launcher/Models/Design/ServerStartEventArgs.cs
Normal file
@@ -0,0 +1,18 @@
|
||||
using System;
|
||||
|
||||
namespace Nitrox.Launcher.Models.Design;
|
||||
|
||||
public sealed class ServerStartEventArgs : EventArgs
|
||||
{
|
||||
public bool IsEmbedded { get; }
|
||||
|
||||
public ServerStartEventArgs(bool embedded)
|
||||
{
|
||||
IsEmbedded = embedded;
|
||||
}
|
||||
|
||||
public override string ToString()
|
||||
{
|
||||
return $"[ServerStartEventArgs - IsEmbedded: {IsEmbedded}]";
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user