Tinman  1.0
networkcontroller.h
Go to the documentation of this file.
1 #ifndef NETWORKCONTROLLER_H
2 #define NETWORKCONTROLLER_H
3 #include "controller.h"
4 
6  public:
8  virtual ~NetworkController();
9 
10  void configure();
11  void update(float delta);
12  void exec(Tinman::Action action);
13 
14  int get_snapshots_per_frame(float delta);
15 
16  private:
19 };
20 
21 #endif
float duration_
Definition: networkcontroller.h:17
int get_snapshots_per_frame(float delta)
Definition: networkcontroller.cpp:43
Definition: controller.h:10
Definition: networkcontroller.h:5
void configure()
Definition: networkcontroller.cpp:13
void update(float delta)
Definition: networkcontroller.cpp:23
NetworkController(Car::shared car)
Definition: networkcontroller.cpp:4
float last_size_
Definition: networkcontroller.h:17
std::shared_ptr< Car > shared
Definition: car.h:44
int last_num_sequence_
Definition: networkcontroller.h:18
virtual ~NetworkController()
Definition: networkcontroller.cpp:9
void exec(Tinman::Action action)
Definition: networkcontroller.cpp:17