summaryrefslogtreecommitdiff
path: root/AmpelJonas/cTrafficLight.h
diff options
context:
space:
mode:
authorGravatar jonas <himself@jonasgunz.de> 2018-12-10 17:54:50 +0100
committerGravatar jonas <himself@jonasgunz.de> 2018-12-10 17:54:50 +0100
commit4e44cec4a2a29cfee132bbe1ee722fbc5168db87 (patch)
treedf0e0b6b14763dd5d87338b98bbc257166345586 /AmpelJonas/cTrafficLight.h
parenta87a70298aefdcade34739ae2aa3b07436aae328 (diff)
downloadtermgl-4e44cec4a2a29cfee132bbe1ee722fbc5168db87.tar.gz
Removed program specific files, updated dependencies
Diffstat (limited to 'AmpelJonas/cTrafficLight.h')
-rw-r--r--AmpelJonas/cTrafficLight.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/AmpelJonas/cTrafficLight.h b/AmpelJonas/cTrafficLight.h
deleted file mode 100644
index c17cdb7..0000000
--- a/AmpelJonas/cTrafficLight.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#pragma once
-#define _TL_SOUTH_ 0
-#define _TL_NORTH_ 1
-#define _TL_EAST_ 2
-#define _TL_WEST_ 3
-
-#define _TL_COL_GREEN_ 0
-#define _TL_COL_YELLOW_ 1
-#define _TL_COL_RED_ 2
-#define _TL_COL_RED_YELLOW_ 3
-
-#include "stdafx.h"
-
-class cTrafficLight
-{
-public:
- cTrafficLight(int _type, int _startphase);
- ~cTrafficLight();
-
- void next();
-
- cObject *getObject();
-private:
- cObject *tl;
- int iPhase;
- int iType;
-}; \ No newline at end of file