mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00

* 修复诸多复活角色的问题;添加了更多回合记录 * 完善了底层技能选取目标方法;添加筛选条件列表,使技能能够灵活的选取角色 * 优化死亡结算的逻辑;优化回合记录日志 * 现在动态工厂可以构造主动技能了
10 lines
263 B
C#
10 lines
263 B
C#
namespace Milimoe.FunGame.Core.Entity
|
|
{
|
|
public class Season(long id, string name, string description)
|
|
{
|
|
public long Id { get; } = id;
|
|
public string Name { get; } = name;
|
|
public string Description { get; } = description;
|
|
}
|
|
}
|