Esempio n. 1
0
 /// <summary>
 /// Creates a new child pointer.
 /// </summary>
 public PHPointerChild(PHook parent, PHPointer pointer, params int[] offsets) : base(parent, offsets)
 {
     BasePointer = pointer;
 }
Esempio n. 2
0
        /// <summary>
        /// Creates a new child pointer.
        /// </summary>
        public PHPointer CreateChildPointer(PHPointer basePointer, params int[] offsets)
        {
            var pointer = new PHPointerChild(this, basePointer, offsets);

            return(pointer);
        }