Converted win32 project to use SDL so that more code is shared and cross platform friendly. This fixes the issue with using the mouse to scroll the camera.

This commit is contained in:
Mark Vejvoda
2010-03-30 00:25:35 +00:00
parent dab5cb840f
commit a74fa24001
12 changed files with 455 additions and 953 deletions

View File

@@ -0,0 +1,15 @@
#ifndef _NOIMPL_H_
#define _NOIMPL_H_
#ifndef WIN32
#define NOIMPL std::cerr << __PRETTY_FUNCTION__ << " not implemented.\n";
#else
#define NOIMPL std::cerr << __FUNCTION__ << " not implemented.\n";
#endif
#endif