mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
RobustToolbox projects should be named Robust.* This PR changes the RobustToolbox projects from SS14.* to Robust.* Updates SS14.* prefixes/namespaces to Robust.* Updates SpaceStation14.sln to RobustToolbox.sln Updates MSBUILD/SS14.* to MSBUILD/Robust.* Updates CSProject and MSBuild references for the above Updates git_helper.py Removes Runserver and Runclient as they are unusable
24 lines
693 B
C#
24 lines
693 B
C#
using Robust.Shared.IoC;
|
|
using Robust.Shared.Reflection;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Robust.Server.Reflection
|
|
{
|
|
/// <summary>
|
|
/// Implementation of <see cref="ReflectionManager"/>
|
|
/// that defines <code>Robust.Server</code> and <code>Robust.Shared</code>
|
|
/// as valid prefixes for <see cref="ReflectionManager.GetType(string)"/>
|
|
/// </summary>
|
|
public sealed class ServerReflectionManager : ReflectionManager
|
|
{
|
|
protected override IEnumerable<string> TypePrefixes => new[]
|
|
{
|
|
"",
|
|
"Robust.Server.",
|
|
"Robust.Shared.",
|
|
"Content.Shared.",
|
|
"Content.Server."
|
|
};
|
|
}
|
|
}
|