예제 #1
0
파일: s_cmd.cs 프로젝트: solwllms/quiver
 public static bool DoesCommandExist(string alias, out command c)
 {
     foreach (command cmd in _cmds)
     {
         if (cmd.alias == alias)
         {
             c = cmd;
             return(true);
         }
     }
     c = null;
     return(false);
 }