예제 #1
0
파일: EaFinder.cs 프로젝트: mytechniques/Ea
    bool Toggle(ue::Object obj)
    {
        int hash = obj.GetHashCode();

        if (!predicates.ContainsKey(hash))
        {
            predicates.Add(hash, false);
        }

        return(predicates [hash]);
    }
예제 #2
0
파일: EaFinder.cs 프로젝트: mytechniques/Ea
 int hashCode(ue::Object obj)
 {
     return(obj.GetHashCode());
 }