예제 #1
0
파일: NolmalTask.cs 프로젝트: xxy1991/cozy
 public bool Run(CozyBuildConfig config)
 {
     foreach (var t in taskList)
     {
         if (!t.Run(config))
             return false;
     }
     return true;
 }
예제 #2
0
파일: LuaTask.cs 프로젝트: xxy1991/cozy
 public bool Run(CozyBuildConfig config)
 {
     return true;
 }