/xbmc/screensavers/rsxs-0.9/src/skyrocket/sucker.hh
http://github.com/xbmc/xbmc · C++ Header · 44 lines · 17 code · 5 blank · 22 comment · 0 complexity · 727f280ebf65a8360edd8130e756d788 MD5 · raw file
- /*
- * Really Slick XScreenSavers
- * Copyright (C) 2002-2006 Michael Chapman
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 2 as
- * published by the Free Software Foundation.
- *
- * 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, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- *****************************************************************************
- *
- * This is a Linux port of the Really Slick Screensavers,
- * Copyright (C) 2002 Terence M. Welsh, available from www.reallyslick.com
- */
- #ifndef _SUCKER_HH
- #define _SUCKER_HH
- #include <common.hh>
- #include <particle.hh>
- #include <vector.hh>
- class Sucker : public Particle {
- private:
- float _size;
- float _brightness;
- public:
- Sucker(const Vector&, const Vector&);
- void update();
- void updateCameraOnly();
- void draw() const;
- void suck(const Vector&, float);
- };
- #endif // _SUCKER_HH