13 lines
169 B
C++
13 lines
169 B
C++
#ifndef DOUBLEINPUT_H
|
|
#define DOUBLEINPUT_H
|
|
|
|
#include "effects/effectrow.h"
|
|
|
|
class DoubleInput : public EffectRow
|
|
{
|
|
public:
|
|
DoubleInput();
|
|
};
|
|
|
|
#endif // DOUBLEINPUT_H
|