cyphesis/rulesets/astronomy/Moon.h
Olek Wojnar 7f9ff2246d Remove CVS $Id tags
The legacy tags are causing build issues in Debian.
2013-07-15 20:31:59 +02:00

19 lines
404 B
C++

// This file may be redistributed and modified only under the terms of
// the GNU General Public License (See COPYING for details).
// Copyright (C) 2000 Alistair Riddoch
#ifndef ASTRONOMY_MOON_H
#define ASTRONOMY_MOON_H
#include "Body.h"
//
class Moon : public Body {
private:
public:
Moon(double p, double r, double e = 0, double a = 0) : Body(p,r,e,a) { }
};
#endif // ASTRONOMY_MOON_H