Boolean result of ComPort actions are stored in B register

This commit is contained in:
simon
2018-01-01 12:03:36 -05:00
parent d832f65535
commit 1e26c63358
5 changed files with 21 additions and 7 deletions

View File

@@ -68,6 +68,7 @@ public abstract class GameObject implements JSONSerialisable {
newY = y;
}
//Check if out of World bounds / collision
if (newX < 0) {
//Move object to adjacent World (left)

View File

@@ -2,6 +2,6 @@ package net.simon987.server.game;
public interface Programmable {
void sendMessage(char[] message);
boolean sendMessage(char[] message);
}