核心第一版

This commit is contained in:
2026-08-20 17:03:24 +08:00
parent b8a8470ced
commit a5cfb4baa9
21 changed files with 1510 additions and 1400 deletions
+4 -4
View File
@@ -16,11 +16,11 @@ frame_count
default_capacity
```
* 成员变量:`lower_snake_case_`
* 成员变量:`lower_snake_case`
```cpp
scene_
pending_exception_
scene
pending_exception
```
* 枚举值:`lower_snake_case`
@@ -55,4 +55,4 @@ Low_Latency_Strategy.inl
* 内部实现统一使用 `detail` 命名空间。
**总规则:类型大写下划线,值和函数小写下划线,成员变量末尾加 `_`。**
**总规则:类型大写下划线,值和函数,成员变量小写下划线,字段注释保持行尾注释并且保持对齐**