|
|
@ -50,6 +50,7 @@ All rights reserved. |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
INCLUDE_game |
|
|
|
INCLUDE_game |
|
|
|
|
|
|
|
INCLUDE_DEMO_BUILD |
|
|
|
using A=Attribute; |
|
|
|
using A=Attribute; |
|
|
|
|
|
|
|
|
|
|
|
void Menu::InitializeClassSelectionWindow(){ |
|
|
|
void Menu::InitializeClassSelectionWindow(){ |
|
|
@ -168,6 +169,12 @@ void Menu::InitializeClassSelectionWindow(){ |
|
|
|
|
|
|
|
|
|
|
|
classSprite->S(A::CLASS_SELECTION)=className; |
|
|
|
classSprite->S(A::CLASS_SELECTION)=className; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(DEMO_BUILD&&i>2){ //Disable the three later classes in the demo build.
|
|
|
|
|
|
|
|
classLabel->SetGrayedOut(true); |
|
|
|
|
|
|
|
classButton->SetGrayedOut(true); |
|
|
|
|
|
|
|
classSprite->SetGrayedOut(true); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
toggleGroup.push_back(classSprite); |
|
|
|
toggleGroup.push_back(classSprite); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|