mirror of
https://github.com/CalcProgrammer1/OpenRGB.git
synced 2025-12-24 15:57:50 -05:00
20 lines
693 B
C++
20 lines
693 B
C++
/*---------------------------------------------------------*\
|
|
| RGBController_Debug.h |
|
|
| |
|
|
| RGBController for debug devices |
|
|
| |
|
|
| This file is part of the OpenRGB project |
|
|
| SPDX-License-Identifier: GPL-2.0-only |
|
|
\*---------------------------------------------------------*/
|
|
|
|
#pragma once
|
|
|
|
#include "RGBController_Dummy.h"
|
|
|
|
class RGBController_Debug : public RGBController_Dummy
|
|
{
|
|
public:
|
|
RGBController_Debug();
|
|
void ResizeZone(int zone, int newSize) override;
|
|
};
|