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

30 lines
732 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
2003-12-20 21:59:43 +00:00
Desc: Control lights with Kit 74:
http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=kit+74+relay
2003-11-16 04:45:12 +00:00
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