mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-15 09:43:35 -05:00
zombie stats code
This commit is contained in:
@ -0,0 +1,15 @@
|
||||
namespace SharedLibraryCore.Events.Game.GameScript.Zombie;
|
||||
|
||||
public class PlayerStatUpdatedGameEvent : ClientGameEvent
|
||||
{
|
||||
public enum StatUpdateType
|
||||
{
|
||||
Absolute,
|
||||
Increment,
|
||||
Decrement
|
||||
}
|
||||
|
||||
public string StatTag { get; set; }
|
||||
public int StatValue { get; set; }
|
||||
public StatUpdateType UpdateType { get; set; }
|
||||
}
|
Reference in New Issue
Block a user