dl
dl_script_segment.h
浏览该文件的文档.
1
12#pragma once
13
14#include <vector>
15
16#include "io/dl_log.h"
17
18namespace dl::Script
19{
20
21struct Segment
22{
23 enum class Type
24 {
27 };
29 std::string _varName;
30 std::vector<Variable> _vecParam;
31};
32
33}
日志系统
std::vector< Variable > _vecParam