Skip to content

Library Rangers GameService

Gabriel edited this page Sep 26, 2023 · 2 revisions

GameService

Provides access to hh::game::GameService from Sonic Frontiers.

Functions;

  • void AddUserService(long in_ptr) - adds a pointer to a GameServiceStaticClass struct to the user pointers list of game services to load.
  • void RemoveUserService(long in_ptr) - removes a pointer to a GameServiceStaticClass struct.

Types;

  • struct Data - a struct representation of hh::game::GameService.
    • Members;
      • GameDocument.Data* pGameDocument - a pointer to an instance of app::GameDocument.
      • GameServiceStaticClass* pStaticClass - a pointer to an instance of GameServiceStaticClass.
  • struct GameServiceStaticClass - a struct representation of the static class for storing information about a game service.
    • Members;
      • Helpers.UnmanagedString Name - the name of this game service.
    • Functions;
      • string ToString() - returns the Name member.
Clone this wiki locally