blob: 986bfde85af42127e6831eb41a0fffc2fd6005ae (
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
|
// 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>
#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;
|