X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fscripting%2Fthunderstorm.cpp;h=00e927e3a059c752119569b65079ab6d9894be62;hb=c81b842f4880cd7b4958e03e983e50bff95d02ef;hp=26fed3a91d5332e927b8fb199798d6cf78ca06f6;hpb=fea3446f05e1e7673607b835c269d3e8d1929ab3;p=supertux.git diff --git a/src/scripting/thunderstorm.cpp b/src/scripting/thunderstorm.cpp index 26fed3a91..00e927e3a 100644 --- a/src/scripting/thunderstorm.cpp +++ b/src/scripting/thunderstorm.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,59 +12,53 @@ // 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/thunderstorm.hpp" -#include "scripting/thunderstorm.hpp" -#include "math/vector.hpp" #define NOIMPL log_fatal << __PRETTY_FUNCTION__ << " not implemented." -namespace Scripting -{ +namespace scripting { - Thunderstorm::Thunderstorm(::Thunderstorm* thunderstorm) - : thunderstorm(thunderstorm) - { - } +Thunderstorm::Thunderstorm(::Thunderstorm* thunderstorm) + : thunderstorm(thunderstorm) +{ +} - Thunderstorm::~Thunderstorm() - { - } +Thunderstorm::~Thunderstorm() +{ +} - void Thunderstorm::start() - { - thunderstorm->start(); - } +void Thunderstorm::start() +{ + thunderstorm->start(); +} - void Thunderstorm::stop() - { - thunderstorm->stop(); - } +void Thunderstorm::stop() +{ + thunderstorm->stop(); +} - void Thunderstorm::thunder() - { - thunderstorm->thunder(); - } +void Thunderstorm::thunder() +{ + thunderstorm->thunder(); +} - void Thunderstorm::lightning() - { - thunderstorm->lightning(); - } +void Thunderstorm::lightning() +{ + thunderstorm->lightning(); +} - void Thunderstorm::flash() - { - thunderstorm->flash(); - } +void Thunderstorm::flash() +{ + thunderstorm->flash(); +} - void Thunderstorm::electrify() - { - thunderstorm->electrify(); - } +void Thunderstorm::electrify() +{ + thunderstorm->electrify(); +} } + +/* EOF */