This repository has been archived on 2026-07-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AudioControl/DecreaseVolume.h
amazing-username 2b3718f5fd Functioning
2017-04-09 19:10:28 -05:00

16 lines
190 B
C++

#ifndef DECREASEVOLUME_H
#define DECREASEVOLUME_H
#include"Volume.h"
class DecreaseVolume : public Volume
{
public:
DecreaseVolume();
void newVolume();
void updateVolume();
};
#endif