tgstation-server 6.12.0
The /tg/station 13 server suite
Loading...
Searching...
No Matches
ServerSideModifications.cs
Go to the documentation of this file.
2{
6 public sealed class ServerSideModifications
7 {
11 public bool TotalDmeOverwrite { get; }
12
16 public string? HeadIncludeLine { get; }
17
21 public string? TailIncludeLine { get; }
22
29 public ServerSideModifications(string? headIncludeLine, string? tailIncludeLine, bool totalDmeOverwrite)
30 {
31 HeadIncludeLine = headIncludeLine;
32 TailIncludeLine = tailIncludeLine;
33 TotalDmeOverwrite = totalDmeOverwrite;
34 }
35 }
36}
string? TailIncludeLine
The #include line which should be added to the end of the .dme if any.
string? HeadIncludeLine
The #include line which should be added to the beginning of the .dme if any.
ServerSideModifications(string? headIncludeLine, string? tailIncludeLine, bool totalDmeOverwrite)
Initializes a new instance of the ServerSideModifications class.
bool TotalDmeOverwrite
If the target dme was completely overwitten.