Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ _initializeUris()

void ReLogic.Peripherals.RGB.SteelSeries.GameSenseConnection._initializeUris ( )
inlineprivate

Definition at line 438 of file GameSenseConnection.cs.

439 {
440 _uriBase = new Uri("http://127.0.0.1:" + _mServerPort);
441 QueueMsgRegisterGame._uri = new Uri(_uriBase, "game_metadata");
442 QueueMsgBindEvent._uri = new Uri(_uriBase, "bind_game_event");
443 QueueMsgRegisterEvent._uri = new Uri(_uriBase, "register_game_event");
444 QueueMsgSendEvent._uri = new Uri(_uriBase, "game_event");
445 QueueMsgSendHeartbeat._uri = new Uri(_uriBase, "game_heartbeat");
446 QueueMsgRemoveGame._uri = new Uri(_uriBase, "remove_game");
447 JsonMsg._bitmapEventUri = new Uri(_uriBase, "bitmap_event");
448 }

References ReLogic.Peripherals.RGB.SteelSeries.GameSenseConnection._mServerPort, and ReLogic.Peripherals.RGB.SteelSeries.GameSenseConnection._uriBase.

Referenced by ReLogic.Peripherals.RGB.SteelSeries.GameSenseConnection._gamesenseWrk().