X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FEntities%2FLine.h;h=d0132340e6e7a7bf58b31a1b0ce4b86f3664a17c;hb=389bf8fdd7e1b8f4fe21e5a9fdb477d40d03d829;hp=02169d6bc234cd05ea73477e9befc5bcbabcf760;hpb=617dcc71d9a71663f63fb56ffac2505b45bf91b9;p=physics.git diff --git a/src/Entities/Line.h b/src/Entities/Line.h index 02169d6..d013234 100644 --- a/src/Entities/Line.h +++ b/src/Entities/Line.h @@ -1,8 +1,27 @@ +/* + * 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" /// ***** Header Class ***** @@ -10,14 +29,14 @@ class Line: public Particle { public: - Line(const Vector2&, const Vector2&, bool=true); - Line(const Vector2&, const 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