12 lines
295 B
C#
12 lines
295 B
C#
using Content.Shared._Sunrise.Pets;
|
|
|
|
namespace Content.Client._Sunrise.Pets;
|
|
|
|
public sealed class PettingSystem : SharedPettingSystem
|
|
{
|
|
public void RaiseFuckingEvent(EntityUid pet, PetBaseEvent args)
|
|
{
|
|
args.Entity = GetNetEntity(pet);
|
|
RaiseNetworkEvent(args);
|
|
}
|
|
}
|