- Extended TutorialMessages into a message system that shows up every time a new game is started.

-- instead of tutorial(my message), use message(my message) for such messages. 
-- Counting on people to use it, now that it's here ;)
This commit is contained in:
wagic.the.homebrew
2011-07-10 01:55:20 +00:00
parent e5dfb81fb9
commit e84ad44e47
3 changed files with 27 additions and 13 deletions

View File

@@ -886,14 +886,15 @@ public:
JQuad * mBg[9];
bool mUserCloseRequest, mDontShow;
bool mIsImage;
int mLimit;
ATutorialMessage(MTGCardInstance * source, string message);
ATutorialMessage(MTGCardInstance * source, string message, int limit = 1);
void Update(float dt);
bool CheckUserInput(JButton key);
void Render();
string getOptionName();
bool alreadyShown();
int alreadyShown();
ATutorialMessage * clone() const;
~ATutorialMessage();