Created
February 15, 2017 12:06
-
-
Save sosnus/51677527432a6c35d5ed1451092d8c7f 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
| Gamepad controller; | |
| DispatcherTimer dispatcherTimer; | |
| TimeSpan period = TimeSpan.FromMilliseconds(50); | |
| public MainPage() | |
| { | |
| this.InitializeComponent(); | |
| dispatcherTimer = new DispatcherTimer(); | |
| dispatcherTimer.Tick += dispatcherTimer_Tick; | |
| dispatcherTimer.Start(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment