💿🐜 Antkeeper source code https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

82 lines
2.4 KiB

  1. /*
  2. * Copyright (C) 2021 Christopher J. Howard
  3. *
  4. * This file is part of Antkeeper source code.
  5. *
  6. * Antkeeper source code is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * Antkeeper source code is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with Antkeeper source code. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #ifndef ANTKEEPER_GAME_ANT_BREED_HPP
  20. #define ANTKEEPER_GAME_ANT_BREED_HPP
  21. #include "game/ant/trait/antennae.hpp"
  22. #include "game/ant/trait/cocoon.hpp"
  23. #include "game/ant/trait/diet.hpp"
  24. #include "game/ant/trait/egg.hpp"
  25. #include "game/ant/trait/eyes.hpp"
  26. #include "game/ant/trait/foraging-time.hpp"
  27. #include "game/ant/trait/forewings.hpp"
  28. #include "game/ant/trait/gaster.hpp"
  29. #include "game/ant/trait/head.hpp"
  30. #include "game/ant/trait/hindwings.hpp"
  31. #include "game/ant/trait/larva.hpp"
  32. #include "game/ant/trait/legs.hpp"
  33. #include "game/ant/trait/mandibles.hpp"
  34. #include "game/ant/trait/mesosoma.hpp"
  35. #include "game/ant/trait/nest.hpp"
  36. #include "game/ant/trait/ocelli.hpp"
  37. #include "game/ant/trait/pigmentation.hpp"
  38. #include "game/ant/trait/pilosity.hpp"
  39. #include "game/ant/trait/sculpturing.hpp"
  40. #include "game/ant/trait/sting.hpp"
  41. #include "game/ant/trait/waist.hpp"
  42. namespace game {
  43. namespace ant {
  44. /**
  45. * Set of all traits that describes an ant breed.
  46. */
  47. struct breed
  48. {
  49. // Morphological traits
  50. trait::antennae* antennae;
  51. trait::eyes* eyes;
  52. trait::forewings* forewings;
  53. trait::gaster* gaster;
  54. trait::waist* waist;
  55. trait::head* head;
  56. trait::hindwings* hindwings;
  57. trait::legs* legs;
  58. trait::mandibles* mandibles;
  59. trait::mesosoma* mesosoma;
  60. trait::ocelli* ocelli;
  61. trait::sting* sting;
  62. trait::sculpturing* sculpturing;
  63. trait::pigmentation* pigmentation;
  64. trait::pilosity* pilosity;
  65. trait::egg* egg;
  66. trait::larva* larva;
  67. trait::cocoon* cocoon;
  68. // Behavioral traits
  69. trait::diet* diet;
  70. trait::foraging_time* foraging_time;
  71. trait::nest* nest;
  72. };
  73. } // namespace ant
  74. } // namespace game
  75. #endif // ANTKEEPER_GAME_ANT_BREED_HPP