added link to mxtypes.h

This commit is contained in:
Paul Kaefer 2023-10-31 07:48:39 -05:00
parent 1db48b3b2c
commit 07c7478cf4

View File

@ -35,7 +35,7 @@ We are currently using [clang-format](https://clang.llvm.org/docs/ClangFormat.ht
- `m_camelCase` for member variables. - `m_camelCase` for member variables.
- `g_camelCase` for global variables. - `g_camelCase` for global variables.
- `p_camelCase` for function parameters. - `p_camelCase` for function parameters.
- Instead of C++ primitives (e.g. `int`, `long`, etc.), use types in `mxtypes.h` instead. This will help us ensure that variables will be the correct size regardless of the underlying compiler/platform/architecture. - Instead of C++ primitives (e.g. `int`, `long`, etc.), use types in [`mxtypes.h`](https://github.com/isledecomp/isle/blob/master/LEGO1/mxtypes.h) instead. This will help us ensure that variables will be the correct size regardless of the underlying compiler/platform/architecture.
## Questions? ## Questions?