mirror of
https://github.com/space-wizards/space-station-14.git
synced 2026-02-15 03:31:30 +01:00
13 lines
416 B
C#
13 lines
416 B
C#
using Content.Shared.Materials;
|
|
using Robust.Client.UserInterface.Controllers;
|
|
|
|
namespace Content.Client.Materials.UI;
|
|
|
|
public sealed class MaterialStorageUIController : UIController
|
|
{
|
|
public void SendLatheEjectMessage(EntityUid uid, string material, int sheetsToEject)
|
|
{
|
|
EntityManager.RaisePredictiveEvent(new EjectMaterialMessage(EntityManager.GetNetEntity(uid), material, sheetsToEject));
|
|
}
|
|
}
|