#ifndef NETWORK_SET_H_3036B8E3 #define NETWORK_SET_H_3036B8E3 #include #include #include #include #include struct NetworkNode { int entry; int exit; bool two_way; bool operator<(const NetworkNode& rhs) const; }; class NetworkSet { public: void Clear(); void AddLink(int id1, int id2, bool two_way); void AddLinkToNetwork(int network_id, int id1, int id2, bool two_way); bool IsItemInNetwork(int id) const; const std::set& GetNetworkGraph(int id) const; private: std::map> network_by_item_; }; #endif /* end of include guard: NETWORK_SET_H_3036B8E3 */ d> index : lingo2-archipelago
Randomizer for LINGO 2 using Archipelago Multiworld
about summary refs log tree commit diff stats
blob: e70be1c621ce946f2df313f0eb8e2a16261d3834 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: "Poetry Room 3"
panels {
  name: "PRETTY"
  path: "Panels/NotNoT/panel3"
  clue: "pretty"
  answer: "pretty"
}
panels {
  name: "NOT"
  path: "Panels/NotNoT/panel4"
  clue: "not"
  answer: "not"
}
panels {
  name: "NOT PRETTY"
  path: "Panels/NotNoT/not_pretty_proxying"
  clue: ""
  answer: "ugly"
  symbols: EVAL
  symbols: LINGO
  proxies { answer: "ugly" path: "Panels/NotNoT/not_pretty_proxied_1" }
  proxies { answer: "prey" path: "Panels/NotNoT/not_pretty_proxied_2" }
}