Initial commit.
This commit is contained in:
15
include/controller.h
Normal file
15
include/controller.h
Normal file
@ -0,0 +1,15 @@
|
||||
#pragma once
|
||||
|
||||
#include "player.h"
|
||||
|
||||
class Controller {
|
||||
private:
|
||||
Player* _player;
|
||||
|
||||
public:
|
||||
Controller(Player* p) : _player(p) {}
|
||||
void vol_up();
|
||||
void vol_down();
|
||||
void track_next();
|
||||
void track_prev();
|
||||
};
|
Reference in New Issue
Block a user