19 lines
539 B
C#
19 lines
539 B
C#
// © SUNRISE, An EULA/CLA with a hosting restriction, full text: https://github.com/space-sunrise/space-station-14/blob/master/CLA.txt
|
|
|
|
using Content.Shared._Sunrise.Pets;
|
|
|
|
namespace Content.Client._Sunrise.Pets;
|
|
|
|
public sealed partial class PetSelectionSystem : EntitySystem
|
|
{
|
|
public override void Initialize()
|
|
{
|
|
base.Initialize();
|
|
}
|
|
|
|
public void PetSelectionSelected(string selectedPet)
|
|
{
|
|
var message = new PetSelectionPrototypeSelectedEvent(selectedPet);
|
|
RaiseNetworkEvent(message);
|
|
}
|
|
}
|