Ejemplo n.º 1
0
        public Attribute(int id, int defaultValue, int u3, int u4, int u5, string scriptA, string scriptB, string name, AttributeEncoding encodingType, byte u10, int min, int max, int bitCount)
        {
            Id = id;
            _defaultValue.Value = defaultValue;
            U3           = u3;
            U4           = u4;
            U5           = u5;
            ScriptA      = scriptA;
            ScriptB      = scriptB;
            Name         = name;
            EncodingType = encodingType;
            U10          = u10;

            Min      = new AttributeValue(min);
            Max      = new AttributeValue(max);
            BitCount = bitCount;
        }
Ejemplo n.º 2
0
 public AttributeF(int id, float defaultValue, int u3, int u4, int u5, string scriptA, string scriptB, string name, AttributeEncoding encodingType, byte u10, float min, float max, int bitCount)
     : base(id, defaultValue, u3, u4, u5, scriptA, scriptB, name, encodingType, u10, min, max, bitCount)
 {
 }