mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-18 01:05:13 +00:00
20 lines
519 B
C
20 lines
519 B
C
|
#pragma once
|
||
|
|
||
|
#include "al/camera/CameraDirector.h"
|
||
|
#include "al/message/IUseMessageSystem.h"
|
||
|
#include "al/rumble/PadRumbleDirector.h"
|
||
|
#include "al/scene/SceneObjHolder.h"
|
||
|
#include "game/System/GameSystemInfo.h"
|
||
|
|
||
|
namespace al {
|
||
|
class LayoutSceneInfo {
|
||
|
public:
|
||
|
void* gap;
|
||
|
al::CameraDirector *mCameraDirector;
|
||
|
al::PadRumbleDirector *mPadRumbleDirector;
|
||
|
al::SceneObjHolder *mSceneObjHolder;
|
||
|
al::MessageSystem* mMessageSystem;
|
||
|
al::GamePadSystem *mGamepadSystem;
|
||
|
};
|
||
|
}
|