summaryrefslogtreecommitdiff
path: root/AmpelJonas/cPeasantTrafficLight.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/cPeasantTrafficLight.h
parenta87a70298aefdcade34739ae2aa3b07436aae328 (diff)
downloadtermgl-4e44cec4a2a29cfee132bbe1ee722fbc5168db87.tar.gz
Removed program specific files, updated dependencies
Diffstat (limited to 'AmpelJonas/cPeasantTrafficLight.h')
-rw-r--r--AmpelJonas/cPeasantTrafficLight.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/AmpelJonas/cPeasantTrafficLight.h b/AmpelJonas/cPeasantTrafficLight.h
deleted file mode 100644
index 88ec99b..0000000
--- a/AmpelJonas/cPeasantTrafficLight.h
+++ /dev/null
@@ -1,30 +0,0 @@
-#pragma once
-#include "stdafx.h"
-
-#define _CTL_COL_RED 0
-#define _CTL_COL_GREEN 1
-
-//Counted clockwise, starting with the upper tl of west lane
-#define _CTL_1 2
-#define _CTL_2 1
-#define _CTL_3 3
-#define _CTL_4 4
-#define _CTL_5 6
-#define _CTL_6 5
-#define _CTL_7 7
-#define _CTL_8 8
-
-class cPeasantTrafficLight
-{
-public:
- cPeasantTrafficLight(int _type, int _startphase);
- ~cPeasantTrafficLight();
-
- void next();
-
- cObject *getObject();
-private:
- cObject *tl;
- int iPhase;
- int iType;
-}; \ No newline at end of file