forked from moai/moai-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaku_modules_android.cpp
More file actions
43 lines (32 loc) · 1.07 KB
/
Copy pathaku_modules_android.cpp
File metadata and controls
43 lines (32 loc) · 1.07 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) 2010-2017 Zipline Games, Inc. All Rights Reserved.
// http://getmoai.com
#include <zl-common/zl_platform.h>
#include <host-modules/aku_modules_android.h>
//================================================================//
// implementation
//================================================================//
//----------------------------------------------------------------//
void AKUModulesAndroidAppFinalize () {
#if AKU_WITH_ANDROID
AKUAndroidAppFinalize ();
#endif
}
//----------------------------------------------------------------//
void AKUModulesAndroidAppInitialize () {
#if AKU_WITH_ANDROID
AKUAndroidAppInitialize ();
#endif
}
//----------------------------------------------------------------//
void AKUModulesAndroidContextInitialize () {
#if AKU_WITH_ANDROID
AKUAndroidContextInitialize ();
#endif
}
//----------------------------------------------------------------//
void AKUModulesAndroidPause ( bool pause ) {
UNUSED ( pause );
}
//----------------------------------------------------------------//
void AKUModulesAndroidUpdate () {
}