2018-05-30 19:11:33 +02:00
|
|
|
def can_build(env, platform):
|
2017-11-15 19:23:20 +01:00
|
|
|
# should probably change this to only be true on iOS and Android
|
2017-12-04 13:41:34 +01:00
|
|
|
return False
|
2017-09-28 14:15:21 +02:00
|
|
|
|
|
|
|
def configure(env):
|
2017-11-15 19:23:20 +01:00
|
|
|
pass
|
2017-09-29 13:36:27 +02:00
|
|
|
|
|
|
|
def get_doc_classes():
|
2017-11-15 19:23:20 +01:00
|
|
|
return [
|
|
|
|
"MobileVRInterface",
|
|
|
|
]
|
2017-09-29 13:36:27 +02:00
|
|
|
|
|
|
|
def get_doc_path():
|
2017-11-15 19:23:20 +01:00
|
|
|
return "doc_classes"
|