From dfda3f2a5e555d3173359134f4994bcd12d129f8 Mon Sep 17 00:00:00 2001 From: majortom6 Date: Fri, 3 Mar 2017 15:18:22 -0600 Subject: -removed the Graphics Data class -replaced with already implemented Rectangle, and put color and side variables in dna (can potentially remove the side variable if it does nothing important) --- inc/dna.hpp | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'inc/dna.hpp') diff --git a/inc/dna.hpp b/inc/dna.hpp index 8c4effa..1126638 100644 --- a/inc/dna.hpp +++ b/inc/dna.hpp @@ -26,6 +26,13 @@ class DNA float speed; float mutationPercent; float mutationChance; + + struct Visuals{ + float sides; + float red; + float green; + float blue; + } appearance; }; #endif -- cgit v1.2.3