You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
435 B
C#
16 lines
435 B
C#
using System;
|
|
using Unity.BossRoom.Gameplay.GameplayObjects;
|
|
using Unity.BossRoom.Gameplay.GameplayObjects.Character;
|
|
using Unity.BossRoom.Utils;
|
|
using Unity.Netcode;
|
|
|
|
namespace Unity.BossRoom.Gameplay.Messages
|
|
{
|
|
public struct LifeStateChangedEventMessage : INetworkSerializeByMemcpy
|
|
{
|
|
public LifeState NewLifeState;
|
|
public CharacterTypeEnum CharacterType;
|
|
public FixedPlayerName CharacterName;
|
|
}
|
|
}
|