|
@ -42,9 +42,11 @@ public class Program { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
public void ForwardInputToGameManager() { |
|
|
public void ForwardInputToGameManager() { |
|
|
|
|
|
try { |
|
|
for (char inputChar : input.inputList) { |
|
|
for (char inputChar : input.inputList) { |
|
|
gameManager.ProcessInput(inputChar); |
|
|
gameManager.ProcessInput(inputChar); |
|
|
} |
|
|
} |
|
|
|
|
|
} catch (Exception e) {} |
|
|
input.inputList.clear(); |
|
|
input.inputList.clear(); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|