- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathModulePlayer.cpp
More file actions
Latest commit
35 lines (25 loc) · 480 Bytes
/
Copy pathModulePlayer.cpp
File metadata and controls
35 lines (25 loc) · 480 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include"Globals.h"
#include"Application.h"
#include"ModulePlayer.h"
ModulePlayer::ModulePlayer(Application* app, bool start_enabled) : Module(app, start_enabled)
{
}
ModulePlayer::~ModulePlayer()
{}
// Load assets
boolModulePlayer::Start()
{
LOG("Loading player");
returntrue;
}
// Unload assets
boolModulePlayer::CleanUp()
{
LOG("Unloading player");
returntrue;
}
// Update: draw background
update_status ModulePlayer::Update()
{
returnUPDATE_CONTINUE;
}