()
| 127 | } |
| 128 | |
| 129 | public void thinkFunction() |
| 130 | { |
| 131 | if(over9000) |
| 132 | { |
| 133 | myTurn = true; |
| 134 | } |
| 135 | |
| 136 | if(processingFunction == false) |
| 137 | { |
| 138 | processingFunction = true; |
| 139 | |
| 140 | new Thread(this).start(); |
| 141 | } |
| 142 | } |
| 143 | |
| 144 | public void stopThinkFunction() |
| 145 | { |
no test coverage detected