Added trophy graphics.

This commit is contained in:
Steve 2016-03-27 11:32:38 +01:00
parent 147f2afae4
commit 47f7f5671a
6 changed files with 3 additions and 1 deletions

BIN
gfx/trophies/bronze.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

BIN
gfx/trophies/gold.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
gfx/trophies/platinum.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

BIN
gfx/trophies/silver.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

View File

@ -134,7 +134,8 @@ void initGameSystem(void)
initModalDialog,
initBackground,
initStars,
initControls
initControls,
initTrophies
};
numInitFuns = sizeof(initFuncs) / sizeof(void*);

View File

@ -70,6 +70,7 @@ extern void setLanguage(char *applicationName, char *languageCode);
extern char *getLookupName(char *prefix, long num);
extern long lookup(char *name);
extern void initStars(void);
extern void initTrophies(void);
extern App app;
extern Colors colors;