示例#1
0
文件: Actor.cs 项目: FoxterBva/SfSim2
 public Actor()
 {
     BaseStats = new ActorStats();
     CurrentStats = new ActorStats();
     Abilities = new List<Ability>();
     Buffs = new List<Buff>();
     DeBuffs = new List<Buff>();
     Symbols = new List<SymbolBase>();
 }
示例#2
0
 public SimulationCase()
 {
     SourceStats = new ActorStats();
 }