Fix SubscribeMouseMove return type

pull/32/head
Clive Galway 6 years ago
parent 6d9717b490
commit 8de8b46ad0

@ -98,9 +98,9 @@ namespace AutoHotInterception
}
//Shorthand for SubscribeMouseMoveRelative
public bool SubscribeMouseMove(int id, bool block, dynamic callback)
public void SubscribeMouseMove(int id, bool block, dynamic callback)
{
return SubscribeMouseMoveRelative(id, block, callback);
SubscribeMouseMoveRelative(id, block, callback);
}
/// <summary>

@ -0,0 +1,15 @@
# Changelog
All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Added
### Changed
### Deprecated
### Removed
### Fixed
- SubscribeMouseMove endpoint fixed to not return bool (Fix "Can not implicitly convert type Void to object" error)
## [0.3.7] - 2018-12-11
Loading…
Cancel
Save