#ifndef FORM_H_7EFBC970 #define FORM_H_7EFBC970 #include #include namespace verbly { namespace generator { class pronunciation; class database; class form { public: // Constructor explicit form(std::string text); // Mutators void addPronunciation(const pronunciation& p); // Accessors int getId() const { return id_; } std::string getText() const { return text_; } int getComplexity() const { return complexity_; } bool isProper() const { return proper_; } std::set getPronunciations() const { return pronunciations_; } private: static int nextId_; const int id_; const std::string text_; const int complexity_; const bool proper_; std::set pronunciations_; }; // Serializer database& operator<<(database& db, const form& arg); }; }; #endif /* end of include guard: FORM_H_7EFBC970 */ -colors Randomizer for LINGO 2 using Archipelago Multiworld
about summary refs log tree commit diff stats
blob: b271a5c2caa365f73bcf95724fae1af4a00caccc (plain) (blame)
1
2
3
4
5
6
7
8
9
name: "Computer Room Seal"
panel_display_name: "Computer Room"
panels {
  name: "SCROLL"
  path: "Panels/Computer/computer_11"
  clue: "scroll"
  answer: "seal"
  symbols: BOXES
}