1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-14 00:58:18 -05:00
Files
IW4M-Admin/SharedLibraryCore/Events/Game/GameScript/Zombie/ZombieKilledGameEvent.cs

10 lines
226 B
C#

namespace SharedLibraryCore.Events.Game.GameScript.Zombie;
public class ZombieKilledGameEvent : ZombieDamageGameEvent
{
public ZombieKilledGameEvent()
{
RequiredEntity = EventRequiredEntity.Origin;
}
}