fancy buildings made configurable
This commit is contained in:
parent
b378887834
commit
6c682f3665
2 changed files with 12 additions and 0 deletions
|
@ -808,6 +808,16 @@ local SCM CclRightButtonMoves(void)
|
|||
return SCM_UNSPECIFIED;
|
||||
}
|
||||
|
||||
/**
|
||||
** Enable fancy buildings
|
||||
*/
|
||||
local SCM CclFancyBuildings(void)
|
||||
{
|
||||
FancyBuildings=1;
|
||||
|
||||
return SCM_UNSPECIFIED;
|
||||
}
|
||||
|
||||
/**
|
||||
** Register CCL features for UI.
|
||||
*/
|
||||
|
@ -836,6 +846,7 @@ global void UserInterfaceCclRegister(void)
|
|||
gh_new_procedure0_0("show-command-key",CclShowCommandKey);
|
||||
gh_new_procedure0_0("right-button-attacks",CclRightButtonAttacks);
|
||||
gh_new_procedure0_0("right-button-moves",CclRightButtonMoves);
|
||||
gh_new_procedure0_0("fancy-buildings",CclFancyBuildings);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -34,6 +34,7 @@
|
|||
global int RaceAdd; // FIXME: debug solution
|
||||
|
||||
global char RightButtonAttacks; /// right button 0 move, 1 attack
|
||||
global char FancyBuildings; /// Mirror buildings 1 yes, 0 now.
|
||||
|
||||
/**
|
||||
** The user interface configuration
|
||||
|
|
Loading…
Add table
Reference in a new issue