greenhouse
jukebox.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace Jukebox {
4  void play();
5  void stop();
6  bool is_playing();
7 }
Definition: jukebox.h:3
bool is_playing()
Definition: jukebox.cpp:137
void stop()
Definition: jukebox.cpp:132
void play()
Definition: jukebox.cpp:97