using Robust.Shared.ViewVariables;
namespace Robust.Client.ViewVariables
{
public interface IClientViewVariablesManager : IViewVariablesManager
{
///
/// Open a VV window for a locally existing object.
///
/// The object to VV.
void OpenVV(object obj);
///
/// Open a VV window for a locally existing object.
///
/// The VV path to the object to VV.
void OpenVV(string path);
///
/// Open a VV window for a remotely existing object.
///
/// The selector to reference the object remotely.
void OpenVV(ViewVariablesObjectSelector selector);
}
}