mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-15 06:42:25 +02:00
10 lines
207 B
C#
10 lines
207 B
C#
using System;
|
|
|
|
namespace Robust.Client.Console
|
|
{
|
|
public interface IClientConGroupController : IClientConGroupImplementation
|
|
{
|
|
IClientConGroupImplementation Implementation { set; }
|
|
}
|
|
}
|