Skip to content

Instantly share code, notes, and snippets.

@adabo
Last active February 25, 2019 17:38
Show Gist options
  • Save adabo/4a78045772562a80786afe8235219dae to your computer and use it in GitHub Desktop.
Save adabo/4a78045772562a80786afe8235219dae to your computer and use it in GitHub Desktop.
int main()
{
std::vector<Room> rooms {{TOPLEFT,{{SHIELD,TORCH}}},{TOPRIGHT,{{KEY,SHIELD,KEY}}},{BOTLEFT,{{PEBBLE,PEBBLE,KEY}}},{BOTRIGHT,{{KEY,PEBBLE,SHIELD,SHIELD,KEY,PEBBLE}}}};
std::vector<Room> rooms
{
{
TOPLEFT,{
{SHIELD,TORCH}
}
},
{
TOPRIGHT,{
{KEY,SHIELD,KEY}
}
},
{
BOTLEFT,{
{PEBBLE,PEBBLE,KEY}
}
},
{
BOTRIGHT,{
{KEY,PEBBLE,SHIELD,SHIELD,KEY,PEBBLE}
}
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment