Files
GTASource/game/frontend/page_deck/IPageController.h
expvintl 419f2e4752 init
2025-02-23 17:40:52 +08:00

35 lines
830 B
C++

/////////////////////////////////////////////////////////////////////////////////
//
// FILE : IPageController.h
// PURPOSE : Interface to the controller, primarily for message sending
// so the controller can action any results
//
// AUTHOR : james.strain
// STARTED : October 2020
//
/////////////////////////////////////////////////////////////////////////////////
#ifndef I_PAGE_CONTROLLER_H
#define I_PAGE_CONTROLLER_H
#include "frontend/page_deck/uiPageConfig.h"
#if UI_PAGE_DECK_ENABLED
// rage
#include "atl/hashstring.h"
// game
#include "frontend/page_deck/IPageMessageHandler.h"
class IPageController : public IPageMessageHandler
{
FWUI_DECLARE_INTERFACE( IPageController );
public:
};
FWUI_DEFINE_INTERFACE( IPageController );
#endif // UI_PAGE_DECK_ENABLED
#endif // I_PAGE_CONTROLLER_H