mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
17 lines
418 B
C#
17 lines
418 B
C#
using System;
|
|
using Robust.Shared.Network;
|
|
using Robust.Shared.Serialization;
|
|
|
|
namespace Robust.Server.ViewVariables
|
|
{
|
|
internal interface IViewVariablesSession
|
|
{
|
|
IServerViewVariablesInternal Host { get; }
|
|
IRobustSerializer RobustSerializer { get; }
|
|
NetUserId PlayerUser { get; }
|
|
object Object { get; }
|
|
uint SessionId { get; }
|
|
Type ObjectType { get; }
|
|
}
|
|
}
|