project: Import some unused exports

This commit is contained in:
Thomas Cylke
2020-04-11 20:34:32 -04:00
parent c412d7d090
commit 5445bd7046
2 changed files with 81 additions and 0 deletions

View File

@@ -1100,6 +1100,24 @@ public interface Client extends GameShell
*/
long getMouseLastPressedMillis();
/**
* Sets the time at which the last mouse press occurred in milliseconds since
* the UNIX epoch.
*/
void setMouseLastPressedMillis(long time);
/**
* Gets the time at which the second-to-last mouse press occurred in milliseconds since
* the UNIX epoch.
*/
long getClientMouseLastPressedMillis();
/**
* Sets the time at which the second-to-last mouse press occurred in milliseconds since
* the UNIX epoch.
*/
void setClientMouseLastPressedMillis(long time);
/**
* Gets the amount of client ticks since the last keyboard press occurred.
*