blob: 1e65f85529d97e12106ec054b9f4b6a8156c18d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// stdafx.h: Includedatei f�r Standardsystem-Includedateien
// oder h�ufig verwendete projektspezifische Includedateien,
// die nur in unregelm��igen Abst�nden ge�ndert werden.
//
#pragma once
//#include "targetver.h"
#include <stdio.h>
#include <iostream>
#ifdef _WIN32
#include <tchar.h>
#elif __linux__
#include <unistd.h>
#endif
#include <vector>
#include "cRender.h"
#include "cObject.h"
#include "cObjectHandler.h"
#include "cCrossroad.h"
#include "cTrafficLight.h"
#include "cPeasantTrafficLight.h"
#include "cCar.h"
#include "cPeasant.h"
using namespace std;
|