move everything to minecraft subdir, switch to absolute include path

This commit is contained in:
Tropical
2026-03-30 11:01:08 -05:00
parent d570e28c16
commit 5c17c5c9ff
7718 changed files with 36859 additions and 36863 deletions

View File

@@ -0,0 +1,20 @@
#pragma once
// The default number of times any message should be shown
#define TUTORIAL_MESSAGE_DEFAULT_SHOW 3
class TutorialMessage {
private:
int messageId;
bool limitRepeats;
unsigned char numRepeats;
unsigned char timesShown;
uint32_t lastDisplayed;
public:
TutorialMessage(int messageId, bool limitRepeats = false,
unsigned char numRepeats = TUTORIAL_MESSAGE_DEFAULT_SHOW);
bool canDisplay();
const wchar_t* getMessageForDisplay();
};