mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-01-19 14:08:22 +00:00
12 lines
358 B
C#
12 lines
358 B
C#
using Milimoe.FunGame.Core.Entity;
|
|
|
|
namespace Milimoe.FunGame.Core.Model
|
|
{
|
|
public class DeathRelation(Character death, Character? killer, params Character[] assists)
|
|
{
|
|
public Character Death { get; set; } = death;
|
|
public Character? Killer { get; set; } = killer;
|
|
public Character[] Assists { get; set; } = assists;
|
|
}
|
|
}
|