WorldSim  inDev
2D tile-based sandbox RPG with procedurally generated fantasy world simulator 🌏
Civ_Dwarven.hpp
Go to the documentation of this file.
1 #pragma once
2 #ifndef WORLDSIM_CIV_DWARVEN_HPP
3 #define WORLDSIM_CIV_DWARVEN_HPP
4 
5 /* WorldSim: Civ_Dwarven
6  #include "Civ_Dwarven.hpp"
7 
8  A type of Civ. Dwarven civs build mines in the mountains.
9 */
10 
11 
12 class Civ;
13 
14 class Civ_Dwarven: public Civ
15 {
16  private:
17 
18 
19  public:
20  Civ_Dwarven();
21 };
22 
23 #endif
Definition: Civ.hpp:28
Civ_Dwarven()
Definition: Civ_Dwarven.cpp:11
Definition: Civ_Dwarven.hpp:14