From 6aeaaef643db58fd2ed26d78eada3a33666f6a3b Mon Sep 17 00:00:00 2001 From: LagoLunatic Date: Fri, 11 Apr 2025 15:02:53 -0400 Subject: Added enum for Link's movement direction --- docs/coding_guidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/coding_guidelines.md') diff --git a/docs/coding_guidelines.md b/docs/coding_guidelines.md index b540d2e7..e944df7a 100644 --- a/docs/coding_guidelines.md +++ b/docs/coding_guidelines.md @@ -54,7 +54,7 @@ If a translation unit isn't fully decompiled yet, then there's no way to know if Avoid unnecessary includes, especially in header files. clangd will give you a warning saying "Included header is not used directly (fix available)" if you aren't using a header at all. -Forward declaring types where possible will reduce compile times. So instead of putting all the includes in a actor's header file, like so: +Forward declaring types where possible will reduce compile times. So instead of putting all the includes in an actor's header file, like so: ```cpp #include "d/d_path.h" -- cgit v1.2.3