mirror of
https://github.com/hedge-dev/UnleashedRecomp
synced 2026-05-25 23:35:36 -04:00
686ef22c4d
* Implemented D-Pad support for World Map, Super Sonic (WIP) and Bobsleigh * Implemented D-Pad support for Gaia Colossus and Super Sonic * Improved touchpad sensitivity
15 lines
276 B
C++
15 lines
276 B
C++
#pragma once
|
|
|
|
#include <SWA.inl>
|
|
#include <SWA/System/GameMode/WorldMap/WorldMapCursor.h>
|
|
|
|
namespace SWA
|
|
{
|
|
class CTitleStateWorldMap : public CTitleStateBase
|
|
{
|
|
public:
|
|
SWA_INSERT_PADDING(0x08);
|
|
xpointer<CWorldMapCursor> m_pWorldMapCursor;
|
|
};
|
|
}
|