From f40f5dca2fde3b485d44d52a8a65ea8773b68ea3 Mon Sep 17 00:00:00 2001 From: pongo1231 Date: Wed, 21 Feb 2024 23:59:33 +0100 Subject: [PATCH] ChaosMod: Update README Not sure how that crept in there --- ChaosMod/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ChaosMod/README.md b/ChaosMod/README.md index 307c2a4cd..0b1facf83 100644 --- a/ChaosMod/README.md +++ b/ChaosMod/README.md @@ -34,11 +34,11 @@ This is where the source code for the actual mod resides in. Note that the compi ## Coding conventions -- This project provides a custom .clang-format file for use with clang-format. Please make sure to format your source code before contributing, there should be support for just about every IDE / editor out there - either officially or using an extension. Alternatively you can run `dotnet format`. +- This project provides a custom .clang-format file for use with clang-format. Please make sure to format your source code before contributing, there should be support for just about every IDE / editor out there - either officially or using an extension. - Always use brackets for if, for and while expressions. - This project uses precompiled headers; make sure to add `#include ` as the first line in source files. If you include other headers as well separate those two using an empty line to prevent clang-format from reshuffling the stdafx.h include. - Naming: - Private member variables: `m_Foo` - Static global variables specific to a translation unit: `ms_Foo` - Global variables: `g_Foo` - - Global member inside struct: `Foo` \ No newline at end of file + - Global member inside struct: `Foo`