* Report to the front-end that a tool was used. * @param name: Name of the tool. * @param x X coordinate of where the tool was applied. * @param y Y coordinate of where the tool was applied. */
| 932 | * @param y Y coordinate of where the tool was applied. |
| 933 | */ |
| 934 | void Micropolis::didTool(const char *name, short x, short y) |
| 935 | { |
| 936 | callback("didTool", "sdd", name, (int)x, (int)y); |
| 937 | } |
| 938 | |
| 939 | |
| 940 | //////////////////////////////////////////////////////////////////////// |