diff options
| author | mhilbrunner | 2018-05-11 02:00:16 +0200 |
|---|---|---|
| committer | mhilbrunner | 2018-06-07 01:52:04 +0200 |
| commit | c21da40de5fb20ade5b07dcc961c9364ba3815af (patch) | |
| tree | 0afa8202296f30dcd939bc24492e97d4864f4fb1 /modules/upnp/config.py | |
| parent | e854a71fac776cf49a0d65468e8130401eff3c6b (diff) | |
| download | godot-c21da40de5fb20ade5b07dcc961c9364ba3815af.tar.gz godot-c21da40de5fb20ade5b07dcc961c9364ba3815af.tar.zst godot-c21da40de5fb20ade5b07dcc961c9364ba3815af.zip | |
Diffstat (limited to 'modules/upnp/config.py')
| -rw-r--r-- | modules/upnp/config.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/modules/upnp/config.py b/modules/upnp/config.py new file mode 100644 index 000000000..8724ff1a5 --- /dev/null +++ b/modules/upnp/config.py @@ -0,0 +1,14 @@ +def can_build(env, platform): + return True + +def configure(env): + pass + +def get_doc_classes(): + return [ + "UPNP", + "UPNPDevice" + ] + +def get_doc_path(): + return "doc_classes" |
