示例#1
0
 public SHAClasses(SHAClasses classes, byte criticalPoints)
 {
     Name        = classes.Name;
     Comment     = classes.Comment;
     direction   = classes.Direction;
     totalPoints = criticalPoints;
 }
示例#2
0
 public SHAClasses(EDirection direction, string name, byte points, string comment = "") : base(name, comment)
 {
     this.direction = direction;
     totalPoints    = points;
 }