mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-01 17:47:24 +02:00
27 lines
867 B
C#
27 lines
867 B
C#
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Client.ViewVariables
|
|
{
|
|
[NotContentImplementable]
|
|
public interface IClientViewVariablesManager : IViewVariablesManager
|
|
{
|
|
/// <summary>
|
|
/// Open a VV window for a locally existing object.
|
|
/// </summary>
|
|
/// <param name="obj">The object to VV.</param>
|
|
void OpenVV(object obj);
|
|
|
|
/// <summary>
|
|
/// Open a VV window for a locally existing object.
|
|
/// </summary>
|
|
/// <param name="path">The VV path to the object to VV.</param>
|
|
void OpenVV(string path);
|
|
|
|
/// <summary>
|
|
/// Open a VV window for a remotely existing object.
|
|
/// </summary>
|
|
/// <param name="selector">The selector to reference the object remotely.</param>
|
|
void OpenVV(ViewVariablesObjectSelector selector);
|
|
}
|
|
}
|