-
Notifications
You must be signed in to change notification settings - Fork 5
/
config.py
33 lines (29 loc) · 806 Bytes
/
config.py
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
def can_build(env, platform):
return True
def configure(env):
pass
def get_doc_classes():
return [
"Godotcord",
"GodotcordAchievementManager",
"GodotcordActivity",
"GodotcordActivityManager",
"GodotcordFileStat",
"GodotcordImageManager",
"GodotcordInputMode",
"GodotcordLobby",
"GodotcordLobbyManager",
"GodotcordOverlayManager",
"GodotcordPresence",
"GodotcordRelationship",
"GodotcordRelationshipManager",
"GodotcordSearchParameter",
"GodotcordStorageManager",
"GodotcordStoreManager",
"GodotcordUser",
"GodotcordUserManager",
"GodotcordVoiceManager",
"NetworkedMultiplayerGodotcord"
]
def get_doc_path():
return "docs"