Playing with C# and fbot3
Hey guys I was looking into fbot3 source code and I don't understand what "0, 1U, 0U" stands for in movement.
Code:
private void Right()
{
do
{
if (this.isRight)
{
Fbot3.keybd_event(Convert.ToByte(68), (byte) 0, 1U, 0U);
Thread.Sleep(50);
}
}