Files
fluxengine/lib/data/locations.h
2025-08-16 17:39:55 +02:00

11 lines
209 B
C++

#pragma once
struct CylinderHead
{
bool operator==(const CylinderHead&) const = default;
unsigned cylinder, head;
};
extern std::vector<CylinderHead> parseCylinderHeadsString(const std::string& s);