mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 11:40:52 +01:00
26 lines
837 B
C#
26 lines
837 B
C#
using Robust.Shared.ViewVariables;
|
|
|
|
namespace Robust.Client.ViewVariables
|
|
{
|
|
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);
|
|
}
|
|
}
|