From da188d33e2612d454d776bf3872037def38682dc Mon Sep 17 00:00:00 2001 From: CobaltXII Date: Fri, 4 Jan 2019 16:03:51 -0500 Subject: [PATCH] Implemented plant headers --- src/inc/plant.hpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/inc/plant.hpp diff --git a/src/inc/plant.hpp b/src/inc/plant.hpp new file mode 100644 index 0000000..14927e2 --- /dev/null +++ b/src/inc/plant.hpp @@ -0,0 +1,15 @@ +// Types of growing plants. + +enum growing_plant_type +{ + growing_wheat, + + growing_carrots, + + growing_potatoes, + + growing_beetroots +}; + +// A growing plant. +