-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a044091
commit e7db7e2
Showing
17 changed files
with
753 additions
and
811 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
namespace MupenSharp.Enums; | ||
|
||
/// <summary> | ||
/// Enum for Analogue Inputs | ||
/// Enum for Analogue Inputs | ||
/// </summary> | ||
public enum AnalogueInput | ||
{ | ||
/// <summary> | ||
/// The horizontal analogue coordinate | ||
/// </summary> | ||
X, | ||
/// <summary> | ||
/// The horizontal analogue coordinate | ||
/// </summary> | ||
X, | ||
|
||
/// <summary> | ||
/// The vertical analogue coordinate | ||
/// </summary> | ||
Y | ||
/// <summary> | ||
/// The vertical analogue coordinate | ||
/// </summary> | ||
Y | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
namespace MupenSharp.Enums; | ||
|
||
/// <summary> | ||
/// Enum to indicate a specific controller selection. | ||
/// Enum to indicate a specific controller selection. | ||
/// </summary> | ||
public enum Controller | ||
{ | ||
/// <summary> | ||
/// Controller in port one. Has offset 0. | ||
/// </summary> | ||
ControllerOne = 0, | ||
/// <summary> | ||
/// Controller in port one. Has offset 0. | ||
/// </summary> | ||
ControllerOne = 0, | ||
|
||
/// <summary> | ||
/// Controller in port two. Has offset 1. | ||
/// </summary> | ||
ControllerTwo = 1, | ||
/// <summary> | ||
/// Controller in port two. Has offset 1. | ||
/// </summary> | ||
ControllerTwo = 1, | ||
|
||
/// <summary> | ||
/// Controller in port three. Has offset 2. | ||
/// </summary> | ||
ControllerThree = 2, | ||
/// <summary> | ||
/// Controller in port three. Has offset 2. | ||
/// </summary> | ||
ControllerThree = 2, | ||
|
||
/// <summary> | ||
/// Controller in port four. Has offset 3. | ||
/// </summary> | ||
ControllerFour = 3 | ||
/// <summary> | ||
/// Controller in port four. Has offset 3. | ||
/// </summary> | ||
ControllerFour = 3 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.