ADD: updated Libraries and tests

This commit is contained in:
Henry Winkel
2023-12-19 15:51:04 +01:00
parent 22149dc61d
commit e675535586
13 changed files with 42 additions and 33 deletions

View File

@@ -23,7 +23,7 @@ class Ship : public Entities::Entity
std::uint32_t GroundTruthPort,
ushort CommandPort
):
Entity( OwnID,EntityName,ownType, EntityKind,SimCore::Side::EntitySide::FRIEND, "127.0.0.1",GroundTruthPort, CommandPort,false)
Entity( OwnID,EntityName,ownType, 10000, EntityKind,SimCore::Side::EntitySide::FRIEND, "127.0.0.1",GroundTruthPort, CommandPort,false)
{
SimCore::Position pos1;
pos1.setGeodesicPos(55, 6, 0);
@@ -33,6 +33,11 @@ class Ship : public Entities::Entity
// LOG_S(INFO)<<std::endl<<Movement_.getPosition().getGeodesicPos();
}
private:
@@ -48,6 +53,11 @@ class Ship : public Entities::Entity
// LOG_S(INFO)<<"distance from start is:" << distance;
};
void stopChild() override
{
};
};