Created
February 13, 2017 18:39
-
-
Save hedgerh/92d38d6023f0f4e566a7c4afb83b3155 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import HSStageScene from './hs_stage_scene'; | |
| class HSStageObject { | |
| viewProps(): HSViewProps { | |
| return { | |
| stageHeight: HSStageScene.stageHeight | |
| }; | |
| } | |
| } | |
| export default HSStageObject; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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