mirror of
https://github.com/SoDOff-Project/sodoff-mmo.git
synced 2025-10-11 08:18:49 -07:00

Zombie Alert manager is stubbed. Added helpers to allow for weapon MMO. PlayerData for Eat My Dust
30 lines
901 B
C#
30 lines
901 B
C#
using System.Globalization;
|
|
using sodoffmmo.Attributes;
|
|
using sodoffmmo.Core;
|
|
using sodoffmmo.Data;
|
|
|
|
namespace sodoffmmo.CommandHandlers;
|
|
|
|
// TODO: This is currently stubbed. Supposed to do something.
|
|
// Should probably be done by someone who actually played the game.
|
|
[ExtensionCommandHandler("SU")]
|
|
public class EMDZombiesUpdateHandler : CommandHandler {
|
|
public override Task Handle(Client client, NetworkObject receivedObject) {
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
|
|
[ExtensionCommandHandler("EN")]
|
|
public class EMDZombiesEnterHandler : CommandHandler {
|
|
public override Task Handle(Client client, NetworkObject receivedObject) {
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
|
|
[ExtensionCommandHandler("EX")]
|
|
public class EMDZombiesExitHandler : CommandHandler {
|
|
public override Task Handle(Client client, NetworkObject receivedObject) {
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|