| 5950 | } |
| 5951 | |
| 5952 | void CGame::OpenResourceTracker() |
| 5953 | { |
| 5954 | const int w = (g_ConfigManager.GameWindowWidth / 2); |
| 5955 | const int h = (g_ConfigManager.GameWindowHeight / 2); |
| 5956 | const int x = (g_GameWindow.GetSize().Width / 2) - w; |
| 5957 | const int y = (g_GameWindow.GetSize().Height / 2) - h; |
| 5958 | g_GumpManager.AddGump(new CGumpResourceTracker(x, y)); |
| 5959 | } |
| 5960 | |
| 5961 | void CGame::OpenProfile(uint32_t serial) |
| 5962 | { |
no test coverage detected