Remove unneeded numbers

This commit is contained in:
RocketRobz 2020-07-12 15:44:55 -06:00
parent 6d11e35e2a
commit 3129bca949

View File

@ -1,13 +1,13 @@
#ifndef _SAVVY_MANAGER_IMPORT_ROCKET_CHAR_NAMES_HPP
#define _SAVVY_MANAGER_IMPORT_ROCKET_CHAR_NAMES_HPP
extern const char* rocketCharacterNames[1];
extern const char* rocketCharacterNames[];
extern bool rocketCharacterGenders[1];
extern bool rocketCharacterGenders[];
extern const char* rocketCharacterFileNamesSpring[1];
extern const char* rocketCharacterFileNamesSummer[1];
extern const char* rocketCharacterFileNamesFall[1];
extern const char* rocketCharacterFileNamesWinter[1];
extern const char* rocketCharacterFileNamesSpring[];
extern const char* rocketCharacterFileNamesSummer[];
extern const char* rocketCharacterFileNamesFall[];
extern const char* rocketCharacterFileNamesWinter[];
#endif