fishbait/UnityProject/Assets/FishNet/Runtime/Utility/Constants.cs
NIMFER bf403a8f97 Ducktaped together a FishNet version of the Transport
Ducktaped together a FishNet version of the Transport, now I need to edit the LoadBalancer and Server so it connects and actually trades information
2022-08-14 03:55:25 +02:00

11 lines
No EOL
385 B
C#

namespace FishNet.Utility.Constant
{
internal static class UtilityConstants
{
public const string CODEGEN_ASSEMBLY_NAME = "Unity.FishNet.CodeGen";
public const string GENERATED_ASSEMBLY_NAME = "FishNet.Generated";
public const string TEST_ASSEMBLY_NAME = "FishNet.Test";
public const string RUNTIME_ASSEMBLY_NAME = "FishNet.Runtime";
}
}