예제 #1
0
파일: CTipoCfg.cs 프로젝트: Frapassa/PileSW
        public static Dictionary <char, Color> TipoCol()
        {
            Dictionary <char, Color> ret = new Dictionary <char, Color>();

            foreach (var prop in typeof(ETipo).GetFields())
            {
                cc v = (cc)prop.GetValue(typeof(ETipo));
                ret.Add(v.ch, v.co);
            }
            return(ret);
        }
예제 #2
0
파일: CTipoCfg.cs 프로젝트: Frapassa/PileSW
 public TipoVal(String tipo, cc val)
 {
     this.tipo = tipo;
     this.val  = val;
 }