Created
December 28, 2015 17:41
-
-
Save pmiddend/24914d10a18a3b7b0c00 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| return | |
| fcppt::optional_bind( | |
| read_string<12>(s), | |
| [&](std::string const &mask_tiles) | |
| { | |
| return | |
| fcppt::optional_bind( | |
| read_string<12>(s), | |
| [&](std::string const &solid_tiles) | |
| { | |
| return | |
| fcppt::optional_bind( | |
| read_string<12>(s), | |
| [&](std::string const &backdrop) | |
| { | |
| return | |
| fcppt::optional_bind( | |
| read_string<12>(s), | |
| [&](std::string const &music){ | |
| return | |
| fcppt::optional_bind( | |
| fcppt::io::read<level::light_flag_type>( | |
| s, | |
| fcppt::endianness::format::little), | |
| [&](level::light_flag_type const light_flag) | |
| { | |
| // HELP! | |
| } | |
| }); | |
| }) | |
| }); | |
| }); | |
| }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment