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
706 B
C
30 lines
706 B
C
//AUTOGENERATED FILE FROM png2asset
|
|
#ifndef METASPRITE_player_H
|
|
#define METASPRITE_player_H
|
|
|
|
#include <stdint.h>
|
|
#include <gbdk/platform.h>
|
|
#include <gbdk/metasprites.h>
|
|
|
|
#define player_TILE_ORIGIN 0
|
|
#define player_TILE_W 8
|
|
#define player_TILE_H 16
|
|
#define player_WIDTH 16
|
|
#define player_HEIGHT 16
|
|
#define player_TILE_COUNT 28
|
|
#define player_PALETTE_COUNT 8
|
|
#define player_COLORS_PER_PALETTE 4
|
|
#define player_TOTAL_COLORS 32
|
|
#define player_PIVOT_X 8
|
|
#define player_PIVOT_Y 8
|
|
#define player_PIVOT_W 16
|
|
#define player_PIVOT_H 16
|
|
extern const metasprite_t* const player_metasprites[8];
|
|
|
|
BANKREF_EXTERN(player)
|
|
|
|
extern const palette_color_t player_palettes[32];
|
|
extern const uint8_t player_tiles[448];
|
|
|
|
#endif
|