forked from moai/moai-dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhost.cpp
More file actions
37 lines (30 loc) · 1.12 KB
/
Copy pathhost.cpp
File metadata and controls
37 lines (30 loc) · 1.12 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
// Copyright (c) 2010-2017 Zipline Games, Inc. All Rights Reserved.
// http://getmoai.com
#include "host.h"
#include "headers.h"
//================================================================//
// aku-util
//================================================================//
//----------------------------------------------------------------//
void AKUAndroidAppFinalize () {
}
//----------------------------------------------------------------//
void AKUAndroidAppInitialize () {
}
//----------------------------------------------------------------//
void AKUAndroidContextInitialize () {
MOAIAppAndroid::Affirm ();
MOAIBrowserAndroid::Affirm ();
MOAIDialogAndroid::Affirm ();
MOAIMoviePlayerAndroid::Affirm ();
MOAIKeyboardAndroid::Affirm ();
MOAIBillingAndroid::Affirm ();
MOAINotificationsAndroid::Affirm ();
REGISTER_LUA_CLASS ( MOAIAppAndroid );
REGISTER_LUA_CLASS ( MOAIBrowserAndroid );
REGISTER_LUA_CLASS ( MOAIDialogAndroid );
REGISTER_LUA_CLASS ( MOAIMoviePlayerAndroid );
REGISTER_LUA_CLASS ( MOAIKeyboardAndroid );
REGISTER_LUA_CLASS ( MOAIBillingAndroid );
REGISTER_LUA_CLASS ( MOAINotificationsAndroid );
}