C# Rendering Engine for Roguelike [closed]
- by Haedrian
I'm trying my hand at designing a roguelike, and I need a pretty simple 2D rendering engine that works with C#
Its as simple as it gets, I want to be able to drop sprites somewhere on a grid, with some sort of menus/text on the side; that sort of thing. The (very complicated) game itself would be decoupled from the interface
I've looked into a number of engines and they all seem to be very complicated/support much more things than I need.
Right now I'm planning on making my own using either XNA or OpenTK - but I was wondering whether anyone has any suggestions for less-complicated rendering engines which might make my job easier.
Thanks.