mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-09-16 07:12:27 +02:00
12 lines
271 B
C#
12 lines
271 B
C#
using System.Collections.Generic;
|
|
using Robust.Shared.GameObjects;
|
|
|
|
namespace Robust.Server.Bql
|
|
{
|
|
public interface IBqlQueryManager
|
|
{
|
|
public (IEnumerable<EntityUid>, string) SimpleParseAndExecute(string query);
|
|
void DoAutoRegistrations();
|
|
}
|
|
}
|