Files
itgmania212121/stepmania/src/arch/Lights/LightsDriver_Win32Parallel.h
T

29 lines
647 B
C++
Raw Normal View History

2003-11-16 04:45:12 +00:00
#ifndef LightsDriver_Win32Parallel_H
#define LightsDriver_Win32Parallel_H
/*
-----------------------------------------------------------------------------
Class: LightsDriver_Win32Parallel
Desc: Control lights.
2003-11-16 22:35:59 +00:00
Copyright (c) 2003 by the person(s) listed below. All rights reserved.
2003-11-16 04:45:12 +00:00
Chris Danford
-----------------------------------------------------------------------------
*/
#include "arch/Lights/LightsDriver.h"
class LightsDriver_Win32Parallel : public LightsDriver
{
public:
LightsDriver_Win32Parallel();
virtual ~LightsDriver_Win32Parallel();
virtual void SetLight( Light light, bool bOn );
2003-11-16 07:43:39 +00:00
virtual void Flush();
2003-11-16 04:45:12 +00:00
};
#endif