18 lines
311 B
C++
18 lines
311 B
C++
#pragma once
|
|
|
|
#include "Activation.h"
|
|
#include "Perception.h"
|
|
#include "Placement.h"
|
|
#include "Propulsion.h"
|
|
|
|
class Roboid {
|
|
public:
|
|
Roboid();
|
|
Roboid(Placement configuration[], unsigned int thingCount);
|
|
|
|
Sensing sensing;
|
|
Propulsion propulsion;
|
|
|
|
Placement* configuration;
|
|
unsigned int thingCount;
|
|
}; |