Initial commit.

This commit is contained in:
2019-08-02 23:48:36 +02:00
commit 128d76cebc
13 changed files with 313 additions and 0 deletions

9
include/player.h Normal file
View File

@ -0,0 +1,9 @@
#pragma once
class Player {
public:
void vol_up();
void vol_down();
void track_next();
void track_prev();
};