コード例 #1
0
ファイル: InstanceScript.cs プロジェクト: wergy/CypherCore
 public BossBoundaryEntry(uint bossId, AreaBoundary boundary)
 {
     BossId   = bossId;
     Boundary = boundary;
 }
コード例 #2
0
 public BoundaryUnionBoundary(AreaBoundary b1, AreaBoundary b2, bool isInverted = false) : base(isInverted)
 {
     _b1 = b1;
     _b2 = b2;
 }