mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 14:52:35 +02:00
16 lines
347 B
C#
16 lines
347 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using GorgonLibrary;
|
|
using GorgonLibrary.Graphics;
|
|
using SS3D_shared;
|
|
|
|
namespace ClientInterfaces
|
|
{
|
|
public interface IUserInterfaceManager : IService
|
|
{
|
|
void ComponentUpdate(GuiComponentType type, params object[] args);
|
|
}
|
|
}
|