コード例 #1
0
ファイル: LuaBase.cs プロジェクト: WolfpawGroup/RTC3
 public override bool Equals(object o)
 {
     if (o is LuaBase)
     {
         LuaBase l = (LuaBase)o;
         return(_Interpreter.compareRef(l._Reference, _Reference));
     }
     else
     {
         return(false);
     }
 }