BuGS/BuGS/main.rez

60 lines
1.3 KiB
Plaintext
Raw Normal View History

2020-06-11 01:47:00 +00:00
/*
* main.rez
* BuGS
*
* Created by Jeremy Rand on 2020-06-10.
* Copyright © 2020 Jeremy Rand. All rights reserved.
*/
#include "types.rez"
#include "main.h"
/* Version resource */
resource rVersion (1) {
{
0, /* Major version number in BCD */
9, /* Minor version number in BCD */
2021-02-02 03:32:20 +00:00
5, /* Bug version number in BCD */
beta, /* Development phase */
2020-06-11 01:47:00 +00:00
0 /* Release number */
},
verUS,
"BuGS",
2021-01-21 03:33:09 +00:00
"Copyright \$A9 2021 Jeremy Rand"
2020-06-11 01:47:00 +00:00
};
/* Tools */
resource rToolStartup (TOOL_STARTUP) {
#if DESKTOP_RES_MODE == 320
mode320,
#else
mode640,
#endif
{
3, $0100, /* Misc Tool */
8, $0100, /* Sound Tool */
2020-12-09 06:38:03 +00:00
30, $0100, /* Resource Manager */
2020-06-11 01:47:00 +00:00
}
};
/* Sounds */
type rRawSound {
hex string;
};
read rRawSound (BONUS_SOUND) "sound/bonus.raw";
read rRawSound (DEATH_SOUND) "sound/death.raw";
read rRawSound (FIRE_SOUND) "sound/fire.raw";
read rRawSound (KILL_SOUND) "sound/kill.raw";
read rRawSound (SEGMENTS_SOUND) "sound/segments.raw";
read rRawSound (SPIDER_SOUND) "sound/spider.raw";
read rRawSound (EXTRA_LIFE_SOUND) "sound/extralife.raw";
2020-12-22 06:00:10 +00:00
read rRawSound (FLEA_SOUND) "sound/flea.raw";
2020-12-23 19:54:17 +00:00
read rRawSound (SCORPION_SOUND) "sound/scorpion.raw";