8244790603
- Add doc/AScreamFromTheDark_report.md: deep technical report covering
architecture, features, historical workarounds and known debt.
- Rewrite README.md to reflect the current 'A Scream from the Dark'
identity (ghost enemy, stamina/jump, fog of war, going-deeper victory)
instead of the stale 'gioco carino' copy with old file paths.
- Update doc/generation.md: goal is now a random south-edge hatch,
not the max-Manhattan-distance portal.
- Remove orphaned src/victory.{c,h} and its include in render.c;
the victory sequence was replaced by the full-screen next_level image.
- Regenerate tracked png2asset outputs to match current build.
30 lines
745 B
C
30 lines
745 B
C
//AUTOGENERATED FILE FROM png2asset
|
|
#ifndef METASPRITE_gameover_H
|
|
#define METASPRITE_gameover_H
|
|
|
|
#include <stdint.h>
|
|
#include <gbdk/platform.h>
|
|
#include <gbdk/metasprites.h>
|
|
|
|
#define gameover_TILE_ORIGIN 0
|
|
#define gameover_TILE_W 8
|
|
#define gameover_TILE_H 16
|
|
#define gameover_WIDTH 80
|
|
#define gameover_HEIGHT 16
|
|
#define gameover_TILE_COUNT 20
|
|
#define gameover_PALETTE_COUNT 8
|
|
#define gameover_COLORS_PER_PALETTE 4
|
|
#define gameover_TOTAL_COLORS 32
|
|
#define gameover_PIVOT_X 40
|
|
#define gameover_PIVOT_Y 8
|
|
#define gameover_PIVOT_W 80
|
|
#define gameover_PIVOT_H 16
|
|
extern const metasprite_t* const gameover_metasprites[1];
|
|
|
|
BANKREF_EXTERN(gameover)
|
|
|
|
extern const palette_color_t gameover_palettes[32];
|
|
extern const uint8_t gameover_tiles[320];
|
|
|
|
#endif
|