Add TouchScreen Manager (#2333)

This commit is contained in:
emmauss
2021-06-14 06:42:55 +00:00
committed by GitHub
parent b898bc84ce
commit bfcc6a8ad6
8 changed files with 418 additions and 83 deletions

View File

@ -0,0 +1,16 @@
namespace Ryujinx.Input
{
public enum MouseButton : byte
{
Button1,
Button2,
Button3,
Button4,
Button5,
Button6,
Button7,
Button8,
Button9,
Count
}
}