I am trying to add some modifications in the UI.
I want to decrease the population per pop number from 10,000 to 1,000.
So i heard Locutus saying that the UI is based on C++. Then i looked for the integer to this number in the UI and I found out it is PopulationValue.
So in C++ I want to write something like
It is possible to write such C++ code that would work in the UI files?
I want to decrease the population per pop number from 10,000 to 1,000.
So i heard Locutus saying that the UI is based on C++. Then i looked for the integer to this number in the UI and I found out it is PopulationValue.
So in C++ I want to write something like
Code:
PopulationValue = PopulationValue/10
Comment