1
0

feat: prepare the refactor for brigadier

This commit is contained in:
2025-12-19 14:26:35 +08:00
parent 5993ae59c0
commit 96e5172d7a
11 changed files with 15 additions and 0 deletions

View File

@@ -42,6 +42,10 @@ PRIVATE
yycc/carton/binstore/setting.cpp
yycc/carton/binstore/configuration.cpp
yycc/carton/binstore/storage.cpp
yycc/carton/brigadier/types.cpp
yycc/carton/brigadier/constraint.cpp
yycc/carton/brigadier/node.cpp
yycc/carton/brigadier/parser.cpp
yycc/carton/lexer61.cpp
)
target_sources(YYCCommonplace
@@ -111,6 +115,11 @@ FILES
yycc/carton/binstore/configuration.hpp
yycc/carton/binstore/storage.hpp
yycc/carton/lexer61.hpp
yycc/carton/brigadier.hpp
yycc/carton/brigadier/types.hpp
yycc/carton/brigadier/constraint.hpp
yycc/carton/brigadier/node.hpp
yycc/carton/brigadier/parser.hpp
yycc/carton/fft.hpp
)
# Setup header infomations

View File

@@ -39,6 +39,7 @@ namespace yycc::carton::binstore::types {
*/
using VersionIdentifier = uint64_t;
/// @private
/// @brief The raw data of setting.
class ByteArray {
public:

View File

@@ -0,0 +1,3 @@
#pragma once
namespace yycc::carton::brigadier {}

View File

View File

View File

View File

View File

View File

View File

View File

@@ -0,0 +1,2 @@