mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-01-19 14:08:22 +00:00
14 lines
343 B
C#
14 lines
343 B
C#
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Milimoe.FunGame.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 核心属性增强结构
|
|
/// </summary>
|
|
public readonly struct AttributeBoost(PrimaryAttribute pa, double value)
|
|
{
|
|
public PrimaryAttribute PrimaryAttribute => pa;
|
|
public double Value => value;
|
|
}
|
|
}
|