コード例 #1
0
ファイル: MoveUtils.cs プロジェクト: klawrawkz/CRA
 public static IMoveDescriptor GlobalAndLocal(int flatValue = -1, ICRACluster cluster = null, int shardsCount = 0)
 {
     return(new GlobalAndLocalDescriptor(flatValue, cluster, shardsCount));
 }
コード例 #2
0
ファイル: MoveUtils.cs プロジェクト: klawrawkz/CRA
 public GlobalAndLocalDescriptor(int flatValue, ICRACluster cluster = null, int shardsCount = 0)
 {
     _flatValue   = flatValue;
     _cluster     = cluster;
     _shardsCount = shardsCount;
 }
コード例 #3
0
ファイル: MoveUtils.cs プロジェクト: klawrawkz/CRA
 public static IMoveDescriptor Global(int flatValue = -1, ICRACluster cluster = null)
 {
     return(new GlobalDescriptor(flatValue, cluster));
 }
コード例 #4
0
ファイル: MoveUtils.cs プロジェクト: klawrawkz/CRA
 public GlobalDescriptor(int flatValue, ICRACluster cluster)
 {
     _flatValue = flatValue;
     _cluster   = cluster;
 }