mirror of
https://github.com/davidgiven/fluxengine.git
synced 2025-10-31 11:17:01 -07:00
11 lines
209 B
C++
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);
|