array.inc 402 B

123456789101112131415161718192021222324252627
  1. /*
  2. file: customs_skins/array.inc
  3. description: The custom skin registration system. (array)
  4. author: Jay Cortez
  5. date created: 28th March 2018
  6. */
  7. #if defined INC_CUSTOM_SKIN_ARR
  8. #endinput
  9. #endif
  10. #define INC_CUSTOM_SKIN_ARR
  11. #define MAX_CUSTOM_SKINS 600
  12. enum customSkinEnum {
  13. bool:cs_Used,
  14. cs_SkinID,
  15. cs_SkinType,
  16. cs_Meta1,
  17. cs_Meta2
  18. };
  19. new CustomSkin[MAX_CUSTOM_SKINS][customSkinEnum];