mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 03:28:59 +02:00
10 lines
238 B
C++
10 lines
238 B
C++
#pragma once
|
|
#include "..\Common\Tutorial\TutorialMode.h"
|
|
|
|
class XboxGameMode : public TutorialMode
|
|
{
|
|
public:
|
|
XboxGameMode(int iPad, Minecraft *minecraft, ClientConnection *connection);
|
|
|
|
virtual bool isImplemented() { return true; }
|
|
}; |