Skip to content

Instantly share code, notes, and snippets.

@hedgerh
Created February 13, 2017 18:39
Show Gist options
  • Select an option

  • Save hedgerh/92d38d6023f0f4e566a7c4afb83b3155 to your computer and use it in GitHub Desktop.

Select an option

Save hedgerh/92d38d6023f0f4e566a7c4afb83b3155 to your computer and use it in GitHub Desktop.
import HSStageScene from './hs_stage_scene';
class HSStageObject {
viewProps(): HSViewProps {
return {
stageHeight: HSStageScene.stageHeight
};
}
}
export default HSStageObject;
import HSStageObject from './hs_stage_object';
class HSStageScene {
static stageHeight = 768;
static stageWidth = 1024;
}
export default HSStageScene;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment