mirror of
https://github.com/barkeser2002/flower.git
synced 2026-09-25 18:56:16 +03:00
20 lines
261 B
C++
20 lines
261 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class cShape
|
|
{
|
|
public:
|
|
enum eShape
|
|
{
|
|
eShapeNull,
|
|
eShapeBox,
|
|
eShapeCapsule,
|
|
eShapeSphere,
|
|
eShapeCylinder,
|
|
eShapePlane,
|
|
eShapeMax,
|
|
};
|
|
|
|
static bool ParseShape(const std::string& str, cShape::eShape& out_shape);
|
|
}; |