mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-04-29 03:04:19 +00:00
9 lines
238 B
C++
9 lines
238 B
C++
#pragma once
|
|
#include "../Tutorial/FullTutorialMode.h"
|
|
|
|
class TrialMode : public FullTutorialMode {
|
|
public:
|
|
TrialMode(int iPad, Minecraft* minecraft, ClientConnection* connection);
|
|
|
|
virtual bool isImplemented() { return true; }
|
|
}; |