Skip to content

altmp/cpp-sdk

Repository files navigation

alt:V Module SDK

Documentation

Naming style

Enums

PascalCase for name and UPPER_CASE for enumerators, for example:

enum class AmmoSpecialType : uint32_t
{
  NONE,
  ARMOR_PIERCING,
  EXPLOSIVE,
  FULL_METAL_JACKET,
  HOLLOW_POINT,
  INCENDIARY,
  TRACER
};