rocket/editor/stdafx.h
2010-03-19 17:41:37 +01:00

17 lines
400 B
C++

/* Copyright (C) 2007-2008 Erik Faye-Lund and Egbert Teeselink
* For conditions of distribution and use, see copyright notice in COPYING
*/
#pragma once
#include <winsock2.h>
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
#include <windows.h>
#include <string>
#include <list>
#include <stdio.h>
#include <tchar.h>
#include <assert.h>
#define ASSERT(x) assert(x)