mirror of
https://github.com/misternebula/quantum-space-buddies.git
synced 2025-01-10 15:53:19 +00:00
14 lines
275 B
C#
14 lines
275 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QSB.Messaging;
|
|
|
|
namespace QSB.Events
|
|
{
|
|
class PlayerDeathEvent : QSBEvent<PlayerDeathMessage>
|
|
{
|
|
public override MessageType Type => MessageType.PlayerDeath;
|
|
}
|
|
}
|