24 lines
349 B
C++
24 lines
349 B
C++
|
|
/* Author: Josh Holtrop
|
|
* DornerWorks screensaver
|
|
* A simple spinning logo screensaver mode object
|
|
*/
|
|
|
|
#ifndef PLAINSPIN_H
|
|
#define PLAINSPIN_H
|
|
|
|
#include "SSMain.h"
|
|
#include "SSMode.h"
|
|
#include "LogoBox.h"
|
|
|
|
class PlainSpin : public SSMode
|
|
{
|
|
public:
|
|
PlainSpin(SSMain * _SSMain);
|
|
void update();
|
|
protected:
|
|
LogoBox m_logoBox;
|
|
};
|
|
|
|
#endif
|