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
| node-inspector & | |
| coffee --nodejs --debug app.coffee & | |
| google-chrome http://127.0.0.1:8080/debug?port=5858 & | |
| google-chrome http://127.0.0.1:3000 & |
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
| using Microsoft.Xna.Framework; | |
| using System.Linq; | |
| namespace Screens | |
| { | |
| /// <summary> | |
| /// This is a screen that can be added to the ScreenManager. Extend it and add components | |
| /// to it in the Initialize() method. You can also override the Update() and Draw() method. | |
| /// </summary> |
NewerOlder