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/IncreaseVolume.h
T
amazing-username 2b3718f5fd Functioning
2017-04-09 19:10:28 -05:00

17 lines
191 B
C++

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