====== Version 1.0 ====== This is the minimum amount of code for a Monogame window in .NET 6.0. It is just a black window. ===== Link to version 1.0 source code ===== [[https://github.com/tornseglare/ShootThemAll/releases/tag/v1.0]] ===== The beauty of nugets ===== Nugets are the blessing of C# as it makes it so easy to add other people's code to your project! This project makes use of two nugets: * MonoGame.Framework.DesktopGL - This is "monogame". I prefer the opengl version just because I have been working with opengl. * MonoGame.Content.Builder.Task - Great tool which auto-compiles your artwork. ===== Our code ===== The code reside in two files, and here they are: == Program.cs == {{:wiki:version1_0_program_cs.png?400|}} Class Program is the starting point for the windows application. The constructor creates an instance of the ShootThemAllGame class and calls Run(). == ShootThemAllGame.cs == {{:wiki:version1_0_gameclass.png?400|}} Class ShootThemAllGame derive from the monogame Game-class. In the constructor, we create a GraphicsDeviceManager connecting to 'this' game-object. (It's a window). Running the example opens a black monogame window. Please note that the graphics-object is never used, my mistake! You can remove everything related with this, it is not used in this simple example. **''graphics = new GraphicsDeviceManager(this) ...''** [[monogame#versions|Back to index]]