Minecraft TU19

This commit is contained in:
aboudnic6-debug
2026-03-06 21:28:57 +00:00
parent 44371d6718
commit c3951d47ba
3025 changed files with 670507 additions and 2 deletions
@@ -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;
DWORD lastDisplayed;
public:
TutorialMessage(int messageId, bool limitRepeats = false, unsigned char numRepeats = TUTORIAL_MESSAGE_DEFAULT_SHOW);
bool canDisplay();
LPCWSTR getMessageForDisplay();
};