| 71 | |
| 72 | |
| 73 | void RTS_Init(const char *filename) |
| 74 | { |
| 75 | // Don't do anything before actually requesting some data from it. |
| 76 | // In most cases this is never ever used, so just remember the file name for later. |
| 77 | // This also simplifies initialization a lot because everything can just call this function and the last one wins. |
| 78 | RTSName = filename; |
| 79 | } |
| 80 | |
| 81 | bool RTS_IsInitialized() |
| 82 | { |
no outgoing calls
no test coverage detected