Exemplo n.º 1
0
        public LoadoutAdressSetter(AdressGetter getter) : base(getter)
        {
            loadoutIndex = 0;
            ReadMemory();

            LoadOut.ichange += IndexChanged;
        }
Exemplo n.º 2
0
        public BytesComplexBoolAdressSetter(AdressGetter getter, byte[] falseValue, byte[] trueValue) : base(getter)
        {
            this.falseV = falseValue;
            this.trueV  = trueValue;

            //timer = new System.Timers.Timer(1000);
            //timer.Elapsed += (a, b) => ready = true;
        }
Exemplo n.º 3
0
 public ComplexBoolAdressSetter(AdressGetter getter, byte falseValue, byte trueValue) : base(getter)
 {
     this.falseV = falseValue;
     this.trueV  = trueValue;
 }
Exemplo n.º 4
0
 public Int16AdressSetter(AdressGetter getter) : base(getter)
 {
 }
Exemplo n.º 5
0
 public BoolAdressSetter(AdressGetter getter) : base(getter)
 {
 }
Exemplo n.º 6
0
 public StringAdressSetter(AdressGetter getter, int textLength) : base(getter)
 {
     this.textLength = textLength;
 }
Exemplo n.º 7
0
 public ByteAdressSetter(AdressGetter getter) : base(getter)
 {
     ReadMemory();
 }
Exemplo n.º 8
0
 public AdressSetter(AdressGetter getter)
 {
     this.getter = getter;
 }