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