X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=src%2Fscripting%2Fwind.cpp;h=45d61309c680f33911eacd54dd792fd48a6bbdeb;hb=1f5ff04e5283398473b4ac033258b17af0ed08f0;hp=a90a520d906b7ef4a06f92f88a581cafc6730ec4;hpb=68ed4e94bda50566616c21031c3beb48499a7f7c;p=supertux.git diff --git a/src/scripting/wind.cpp b/src/scripting/wind.cpp index a90a520d9..45d61309c 100644 --- a/src/scripting/wind.cpp +++ b/src/scripting/wind.cpp @@ -1,12 +1,10 @@ -// $Id$ -// // SuperTux // Copyright (C) 2006 Matthias Braun // -// 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 2 -// of the License, or (at your option) any later version. +// 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 @@ -14,37 +12,32 @@ // 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, write to the Free Software -// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -#include +// along with this program. If not, see . -#include -#include #include "object/wind.hpp" #include "scripting/wind.hpp" -#include "math/vector.hpp" #define NOIMPL log_fatal << __PRETTY_FUNCTION__ << " not implemented." -namespace Scripting -{ +namespace scripting { - Wind::Wind(::Wind* wind) - : wind(wind) - { } +Wind::Wind(::Wind* wind_) + : wind(wind_) +{ } - Wind::~Wind() - { } +Wind::~Wind() +{ } - void Wind::start() - { - wind->start(); - } +void Wind::start() +{ + wind->start(); +} - void Wind::stop() - { - wind->stop(); - } +void Wind::stop() +{ + wind->stop(); +} } + +/* EOF */