コード例 #1
0
ファイル: DragSocket.cs プロジェクト: UnhappyDogChew/ChessRPG
 public bool MatchKey(IDragable content)
 {
     foreach (string key in keys)
     {
         if (content.GetKey() == key)
         {
             return(true);
         }
     }
     return(false);
 }