1
0
mirror of https://github.com/vcmi/vcmi.git synced 2025-07-17 01:32:21 +02:00

* partially implemented puzzle map

This commit is contained in:
mateuszb
2009-08-31 15:57:15 +00:00
parent 7586094a9b
commit 399f58f1af
14 changed files with 739 additions and 35 deletions

View File

@ -238,6 +238,7 @@ struct SettingsGrammar : public grammar<SettingsGrammar>
| "width=" >> uint_p[SetAdventureProp_a(&AdventureMapConfig::advmapW)]
| "height=" >> uint_p[SetAdventureProp_a(&AdventureMapConfig::advmapH)]
| "smoothMove=" >> uint_p[SetAdventureProp_a(&AdventureMapConfig::smoothMove)]
| "puzzleSepia=" >> uint_p[SetAdventureProp_a(&AdventureMapConfig::puzzleSepia)]
)
)
| str_p("background=") >> fname[SetAdventureStr(&AdventureMapConfig::mainGraphic)]