XNA to MonoGame – ‘Full-Screen’ Window

The purpose of this post is to give an explanation of how to make your XNA and MonoGame game window faux full-screen, that is to say borderless window full-screen. The example codes used below are from a game called Space Salvager, which was originally created in XNA and has been ported to MonoGame. XNA The … Continue reading XNA to MonoGame – ‘Full-Screen’ Window

Threadsafe Calls

The purpose of this post is to give an introduction to making thread-safe calls specifically within .NET/Mono. Thread Safe Calls A thread safe calls are a type of call that can be made from any thread that won't interfere with the operations of another thread.  This is an important overhead to include because, as an … Continue reading Threadsafe Calls