X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FEntities%2FLine.h;h=d0132340e6e7a7bf58b31a1b0ce4b86f3664a17c;hb=389bf8fdd7e1b8f4fe21e5a9fdb477d40d03d829;hp=19ad61d530bbddbf809e8313aae3682b460d8569;hpb=ad9f1fb6bdfc51df61a7fb52d607ca0c0bceca4c;p=physics.git diff --git a/src/Entities/Line.h b/src/Entities/Line.h index 19ad61d..d013234 100644 --- a/src/Entities/Line.h +++ b/src/Entities/Line.h @@ -1,26 +1,42 @@ +/* + * Copyright (C) 2008 Patrik Gornicz, Gornicz_P (at) hotmail (dot) com. + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + #ifndef LINE_H #define LINE_H +#include +using namespace bear; + #include "Particle.h" -#include "../Vector2.h" -/// NOTE to SELF -// a Particle should be drawn for at least the next frame -// ie. creating a particle using ParticleE(Vector2), -// should draw the particle once THEN kill it /// ***** Header Class ***** + class Line: public Particle { public: - Line(Vector2, Vector2, bool=true); - Line(Vector2, Vector2, float); + Line(const Vector2& org, const Vector2& dest, bool canDie=true); + Line(const Vector2& org, const Vector2& dest, float life_time); virtual ~Line(); virtual void draw(); protected: - Vector2 dest; + Vector2 m_dest; // triangle stuffs // color