mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-04 18:55:05 +00:00
11 lines
No EOL
258 B
C++
11 lines
No EOL
258 B
C++
#pragma once
|
|
|
|
#include "game/System/GameSystemInfo.h"
|
|
|
|
namespace al {
|
|
class SequenceInitInfo {
|
|
public:
|
|
SequenceInitInfo(al::GameSystemInfo const *sysInf) : mSystemInfo(sysInf) {}
|
|
const GameSystemInfo *mSystemInfo;
|
|
};
|
|
} |