Implemented inline unsigned int growth_8

This commit is contained in:
CobaltXII
2019-01-04 17:18:19 -05:00
parent 55f20661ae
commit 7f027f90e7

View File

@@ -1,3 +1,10 @@
// Choose a growth timer for a plant that has 8 stages of growth.
inline unsigned int growth_8()
{
return 120 + (rand() % 120) - (rand() % 120);
}
// Types of growing plants.
enum growing_plant_type