mirror of
https://gitea.murdle.top/murdle/mc-lce.git
synced 2026-03-11 11:29:01 +02:00
12 lines
255 B
C++
12 lines
255 B
C++
#pragma once
|
|
#include "TutorialMode.h"
|
|
|
|
class FullTutorialMode : public TutorialMode
|
|
{
|
|
public:
|
|
FullTutorialMode(int iPad, Minecraft *minecraft, ClientConnection *connection);
|
|
|
|
virtual bool isImplemented() { return true; }
|
|
|
|
virtual bool isTutorial();
|
|
}; |