What I have thus far

Camera panning still needs work.
This commit is contained in:
MusicalProgrammer
2018-04-29 23:47:40 -04:00
parent 9868937c08
commit 59510383e6
9 changed files with 536 additions and 55 deletions

11
AudioPlayer.h Normal file
View File

@@ -0,0 +1,11 @@
#include <G3DAll.h>
#pragma once
class AudioPlayer
{
public:
AudioPlayer(void);
~AudioPlayer(void);
static void PlaySound(std::string);
static void init();
};