Esempio n. 1
0
        public PresetMap(PresetMapType type)
        {
            int v = (int)type;

            if (v >= 0 && v < PresetMapEntry.Table.Length)
                this.InitEntry(PresetMapEntry.Table[v]);
        }
Esempio n. 2
0
        public PresetMap( PresetMapType type )
        {
            int v = (int)type;
            name = (string)type.ToString();

            if ( v >= 0 && v < PresetMapEntry.Table.Length )
                InitEntry( PresetMapEntry.Table[v] );
        }
Esempio n. 3
0
        public PresetMap(PresetMapType type)
        {
            int v = (int)type;

            if (v >= 0 && v < PresetMapEntry.Table.Length)
            {
                InitEntry(PresetMapEntry.Table[v]);
            }
        }
Esempio n. 4
0
        public PresetMap(PresetMapType type)
        {
            int v = (int)type;

            name = (string)type.ToString();

            if (v >= 0 && v < PresetMapEntry.Table.Length)
            {
                InitEntry(PresetMapEntry.Table[v]);
            }
        }