From b28023525c6dcf2360c8d03b405d46af4e0e1c6d Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Thu, 10 Dec 2015 08:13:15 -0500 Subject: Doing shit --- include/entities.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'include/entities.h') diff --git a/include/entities.h b/include/entities.h index 64a251a..e0c0887 100644 --- a/include/entities.h +++ b/include/entities.h @@ -34,6 +34,25 @@ enum MOB_SUB { MS_TRIGGER }; +struct Particles{ + vec2 loc; + float width; + float height; + Color color; + Particles(float x, float y, float w, float h, Color c){ + loc.x = (x); + loc.y = (y); + width = (w); + height = (h); + color.red = (c.red); + color.green = (c.green); + color.blue = (c.blue); + } + void draw(){ + std::cout << "Drawing Particles\n"; + } +}; + class Entity{ public: Inventory *inv; -- cgit v1.2.3