commit a4ed919b72b5490da6b52e56c83b47bc073a6b02
parent 4e0fcff66e7a58c5b2479bf1ec85e93693adcdd2
Author: amrfti <andrew@kloet.net>
Date: Thu, 22 May 2025 20:54:24 -0400
cleanup
Diffstat:
1 file changed, 0 insertions(+), 38 deletions(-)
diff --git a/src/CastleAssets.h b/src/CastleAssets.h
@@ -1,38 +0,0 @@
-#pragma once
-
-#include <string>
-#include <vector>
-
-using CastleAsset =
- std::pair<std::vector<std::string>, std::vector<std::string>>;
-
-inline std::vector<CastleAsset> castleAsset = {
- {{
- R"( T~~)",
- R"( |)",
- R"( /^\)",
- R"( / \)",
- R"( _ _ _ / \ _ _ _)",
- R"([ ]_[ ]_[ ]/ _ _ \[ ]_[ ]_[ ])",
- R"(|_=__-_ =_|_[ ]_[ ]_|_=-___-__|)",
- R"( | _- = | =_ = _ |= _= |)",
- R"( |= -[] |- = _ = |_-=_[] |)",
- R"( | =_ |= - ___ | =_ = |)",
- R"( |= []- |- /| |\ |=_ =[] |)",
- R"( |- =_ | =| | | | |- = - |)",
- R"( |_______|__|_|_|_|__|_______|)"},
- {
- R"( RR)",
- R"()",
- R"( yyy)",
- R"( y y)",
- R"( y y)",
- R"( y y)",
- R"()",
- R"()",
- R"()",
- R"( yyy)",
- R"( yy yy)",
- R"( y y y y)",
- R"( yyyyyyy)"}}
-};