Advertisement
Guest User

Untitled

a guest
Sep 2nd, 2014
234
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. #region Using Statements
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5.  
  6. #endregion
  7. namespace GameTest2
  8. {
  9. static class Program
  10. {
  11. private static Game1 game; ////HERE IS MY ERROR! (type the namespace name 'Game1' could not be found(are you missing a using directive or an assembly reference?))
  12.  
  13. /// <summary>
  14. /// The main entry point for the application.
  15. /// </summary>
  16. [STAThread]
  17. static void Main ()
  18. {
  19. game = new Game1 ();
  20. game.Run ();
  21. }
  22. }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement