New bql_select command. (#17007)

Shows BQL results in a client window. Allows TP and VV to the entities.
This commit is contained in:
Pieter-Jan Briers
2023-06-01 00:29:31 +02:00
committed by GitHub
parent 543baa158a
commit 9931a6b2f2
6 changed files with 187 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using Content.Shared.Eui;
using Robust.Shared.Serialization;
namespace Content.Shared.Bql;
[Serializable, NetSerializable]
public sealed class BqlResultsEuiState : EuiStateBase
{
public readonly (string name, EntityUid entity)[] Entities;
public BqlResultsEuiState((string name, EntityUid entity)[] entities)
{
Entities = entities;
}
}