X-Git-Url: http://gitweb.pgornicz.com/gitweb.cgi?a=blobdiff_plain;f=src%2FEntities%2FLine.cpp;h=28743800b76ffaa00bf7e573f3f06b01a66b35af;hb=389bf8fdd7e1b8f4fe21e5a9fdb477d40d03d829;hp=d28947e2af4081e419651795090f1b69bb41abd1;hpb=617dcc71d9a71663f63fb56ffac2505b45bf91b9;p=physics.git diff --git a/src/Entities/Line.cpp b/src/Entities/Line.cpp index d28947e..2874380 100644 --- a/src/Entities/Line.cpp +++ b/src/Entities/Line.cpp @@ -1,17 +1,35 @@ +/* + * 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 . + */ + #include "Line.h" -#include "../Vector2.h" +#include +using namespace bear; /// ***** Constructors/Destructors ***** Line::Line(const Vector2& org, const Vector2& dest, bool canDie) - : Particle(org, canDie), dest(dest) + : Particle(org, canDie), m_dest(dest) { } Line::Line(const Vector2& org, const Vector2& dest, float life_time) - : Particle(org, life_time), dest(dest) + : Particle(org, life_time), m_dest(dest) { }