Problem I’m writing a game in C# Monogame, and I’ve decided to make my project as modular as possible. GitHub […]
Tag: monogame
Sorting entities by Z in every call to Draw
Problem My implementation contains a SpriteComponent class which has a Z property; I use this to determine the order in […]
Creating items in a game
Problem I’ve created some base classes for items, and I want to know how maintainable or expandable the method seems. […]