예제 #1
0
파일: SEAR.cs 프로젝트: aw181/VMF-Copy
        public void AddColorCorrection(string name)
        {
            if (COLOR_CORRECTIONS == null)
            {
                COLOR_CORRECTIONS = new List <string>();
            }

            if (!COLOR_CORRECTIONS.Contains(name))
            {
                COLOR_CORRECTIONS.Add(name);
            }
        }
예제 #2
0
파일: SEAR.cs 프로젝트: aw181/VMF-Copy
 public string[] GetColorCorrections()
 {
     return(COLOR_CORRECTIONS.ToArray());
 }