* Add windows specific wrappers

This commit is contained in:
2014-05-14 22:42:20 -07:00
parent c0974d511a
commit a19520ea1e
6 changed files with 43 additions and 9 deletions

View File

@@ -20,6 +20,10 @@
#include "Athena/Utility.hpp"
#include <iostream>
#if !defined(__PRETTY_FUNCTION__) && defined(_WIN32)
#define __PRETTY_FUNCTION__ __FUNCSIG__
#endif
#ifndef aDebug
#define aDebug() \
std::cout << __FILE__ << "(" << __LINE__ << ") " << __PRETTY_FUNCTION__ << ": "
@@ -59,7 +63,7 @@ namespace Sakura
template <typename T>
class Vector2D
{
{ifndef
public:
T x;
T y;