mirror of
https://github.com/dragonpilot/dragonpilot.git
synced 2026-02-22 16:33:52 +08:00
13 lines
243 B
C++
13 lines
243 B
C++
#ifndef RUNMODEL_H
|
|
#define RUNMODEL_H
|
|
|
|
class RunModel {
|
|
public:
|
|
virtual void addRecurrent(float *state, int state_size) {}
|
|
virtual void addDesire(float *state, int state_size) {}
|
|
virtual void execute(float *net_input_buf) {}
|
|
};
|
|
|
|
#endif
|
|
|