A first attempt to make dialogue capability for module

This commit is contained in:
Blue 2025-04-01 19:46:35 +03:00
parent 8187d045cd
commit ab9a0af05e
Signed by: blue
GPG key ID: 9B203B252A63EE38
8 changed files with 190 additions and 30 deletions

52
.clang-format Normal file
View file

@ -0,0 +1,52 @@
BasedOnStyle: Google
# === Indentation ===
IndentWidth: 4
TabWidth: 4
UseTab: Never
# === Pointer/Reference Alignment ===
DerivePointerAlignment: false
PointerAlignment: Left
# === Braces ===
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum: false
AfterFunction: false
AfterNamespace: false
AfterStruct: false
BeforeCatch: false
BeforeElse: false
IndentBraces: false
# === Spaces ===
SpaceBeforeParens: ControlStatements
SpaceAfterCStyleCast: false
SpaceBeforeAssignmentOperators: true
SpacesInParentheses: false
SpacesInSquareBrackets: false
SpacesInAngles: false
# === Line Breaking ===
AllowShortFunctionsOnASingleLine: Empty
AllowShortIfStatementsOnASingleLine: false
BreakBeforeBraces: Attach
ColumnLimit: 120
# === Includes ===
IncludeBlocks: Preserve
IncludeCategories:
- Regex: '.*'
Priority: 1
SortIncludes: false
# === Misc ===
AlignAfterOpenBracket: Align
AlwaysBreakTemplateDeclarations: Yes
Cpp11BracedListStyle: true
# === Constructor ===
ConstructorInitializerIndentWidth: 4
BreakConstructorInitializers: AfterColon