source: proiecte/ptvs/src/vnsim/applications/emissions/EmissionsDriver.java @ 31

Last change on this file since 31 was 31, checked in by (none), 14 years ago
File size: 416 bytes
Line 
1package vnsim.applications.emissions;
2
3import vnsim.core.CarInfo;
4import vnsim.vehicular.simulator.CarInstance;
5
6/*
7 *         Class that simulates the behavior of a driver that takes into the account
8 * the feedback received from a Wireless Traffic Light.
9 *
10 */
11 
12
13public class EmissionsDriver extends CarInstance{
14
15        public EmissionsDriver(CarInfo car)
16        {
17                super(car);
18        }
19       
20        @Override
21        public void move()
22        {
23               
24        }
25}
Note: See TracBrowser for help on using the repository browser.