コード例 #1
0
ファイル: TypeMask.cs プロジェクト: ly774508966/Flai.Unity
 public bool Equals(TypeMask <T> other)
 {
     return(_bits == other._bits);
 }
コード例 #2
0
ファイル: TypeMask.cs プロジェクト: ly774508966/Flai.Unity
 public bool HasBits(TypeMask <T> other)
 {
     return((_bits & other._bits) == other._bits);
 }