Added groundwork for supporting a better resolution

This commit is contained in:
frank
2015-05-22 00:47:46 -04:00
parent 292379a638
commit 3a503ed48a
4 changed files with 19 additions and 15 deletions

View File

@@ -24,6 +24,7 @@ class Extension(ext.Extension):
schema = super(Extension, self).get_config_schema()
schema['screen_width'] = config.Integer(minimum=1)
schema['screen_height'] = config.Integer(minimum=1)
schema['resolution_factor'] = config.Integer(minimum=0)
schema['cursor'] = config.Boolean()
schema['fullscreen'] = config.Boolean()
schema['cache_dir'] = config.Path()