| 1246 | } |
| 1247 | |
| 1248 | void cmdHandler_SendLocations(const QStringList &/*params*/, MapClientSession &sess) |
| 1249 | { |
| 1250 | VisitLocation visitlocation; |
| 1251 | visitlocation.m_location_name = "Test1"; |
| 1252 | visitlocation.m_pos = glm::vec3(-44, 0, 261); |
| 1253 | |
| 1254 | sendLocation(sess, visitlocation); |
| 1255 | } |
| 1256 | |
| 1257 | void cmdHandler_SendConsoleOutput(const QStringList ¶ms, MapClientSession &sess) |
| 1258 | { |
nothing calls this directly
no test coverage detected