Presentation mode tweaks. Fix for Issue 74: added FileIO interface, Fix for Issue 76: added pure virtual destructor for duDebugDraw.

This commit is contained in:
Mikko Mononen
2010-05-07 07:14:42 +00:00
parent 87800abc28
commit 49f2b03cd8
15 changed files with 2193 additions and 1932 deletions

View File

@@ -21,6 +21,13 @@
#include <string.h>
#include "DebugDraw.h"
duDebugDraw::~duDebugDraw()
{
// Empty
}
inline int bit(int a, int b)
{
return (a & (1 << b)) >> b;