/// <inheritdoc cref="RemoteMemory.Write{T}(IntPtr, T, bool)" />
 public static T Write <T>(this IRemoteMemory remoteMemory, int address, bool relative = false) where T : unmanaged => remoteMemory.Read <T>(new IntPtr(address), relative);
 /// <inheritdoc cref="ReadPointer{T}(IRemoteMemory, IntPtr, int[], bool)" />
 public static T ReadPointer <T>(this IRemoteMemory remoteMemory, long address, int[] offsets, bool relative = false) where T : unmanaged => remoteMemory.Read <T>(remoteMemory.GetAddress(address, offsets, relative));