From 9421ffebecd3557efa49c13f4117d914011cc2fa Mon Sep 17 00:00:00 2001 From: Toria Date: Mon, 3 Mar 2025 17:41:43 +0000 Subject: [PATCH] Contributing and Debugging/PR-Guidelines: add interface prefix (#992) --- pages/Contributing and Debugging/PR-Guidelines.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pages/Contributing and Debugging/PR-Guidelines.md b/pages/Contributing and Debugging/PR-Guidelines.md index e512e20e..f3edfaa9 100644 --- a/pages/Contributing and Debugging/PR-Guidelines.md +++ b/pages/Contributing and Debugging/PR-Guidelines.md @@ -50,6 +50,7 @@ Additionally: - classes have a prefix of `C`: `CMyClass` - structs have a prefix of `S`: `SMyStruct` - namespaces have a prefix of `N`: `NMyNamespace` + - interfaces have a prefix of `I`: `IMyInterface` - global pointers for singletons have a prefix of `g_`: `g_someManager` - constant variables are in CAPS: `const auto MYVARIABLE = ...`