using Robust.Shared.Reflection;
using System.Collections.Generic;
namespace Robust.Server.Reflection
{
///
/// Implementation of
/// that defines Robust.Server and Robust.Shared
/// as valid prefixes for
///
public sealed class ServerReflectionManager : ReflectionManager
{
protected override IEnumerable TypePrefixes => new[]
{
"",
"Robust.Server.",
"Robust.Shared.",
"Content.Shared.",
"Content.Server."
};
}
}