14 lines
309 B
C++
14 lines
309 B
C++
#pragma once
|
|
|
|
#include "core/Shape.h"
|
|
|
|
constexpr Shape A = Shape::A;
|
|
constexpr Shape B = Shape::B;
|
|
constexpr Shape C = Shape::C;
|
|
constexpr Shape D = Shape::D;
|
|
constexpr Shape E = Shape::E;
|
|
constexpr Shape F = Shape::F;
|
|
constexpr Shape G = Shape::G;
|
|
constexpr Shape H = Shape::H;
|
|
constexpr Shape X = Shape::X;
|