I'm writing a game engine in C# using OpenTK, and I'm trying to add support for UI to the engine. Writing this from scratch seems like a big headache and if someone else made a library to do it instead, that would be a lot faster.
Asked
Active
Viewed 5,205 times
1 Answers
5
Although your question is poorly worded something does already exists GWEN.NET. The project is a direct port of the C++ GUI library of the same name. In fact if you look in the renderers & sample there is already demos of how to integrate with OpenTK. Should get you most of the way there.

Delaney
- 1,039
- 1
- 9
- 15
-
1That's what I get for writing stackoverflow questions at 3AM. Thanks for the link, looks like it's just what I need. – Layl Conway Jul 07 '13 at 21:43