mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
14 lines
294 B
C#
14 lines
294 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Server.ViewVariables
|
|
{
|
|
internal interface IServerViewVariablesInternal : IViewVariablesManager
|
|
{
|
|
void Initialize();
|
|
|
|
ICollection<object> TraitIdsFor(Type type);
|
|
}
|
|
}
|