Files
sbox-public/engine/Sandbox.Generator/DiagnosticIds.cs
s&box team 71f266059a Open source release
This commit imports the C# engine code and game files, excluding C++ source code.

[Source-Commit: ceb3d758046e50faa6258bc3b658a30c97743268]
2025-11-24 09:05:18 +00:00

20 lines
684 B
C#

namespace Sandbox.Generator
{
internal static class DiagnosticIds
{
// Lets try and organize these in the future so people can ignore shit they don't care about
// Replication 200-299
public const string ReplicatedUnknownType = "SB200";
public const string ReplicatedStaticUnsupported = "SB201";
public const string ReplicatedNonAutoProp = "SB202";
public const string ReplicatedEntityComponent = "SB203";
public const string ReplicatedListNotIList = "SB204";
public const string ReplicatedDictionaryNotIDictionary = "SB205";
public const string ReplicatedDictionaryUnsupportedType = "SB206";
// ConCmd
public const string ConCmdNotStatic = "SB300";
}
}