Skip to content

Commit

Permalink
[Reverse-engineering] [th02] Five Magic Stones: Coordinates
Browse files Browse the repository at this point in the history
Completes P0265, funded by [Anonymous] and iruleatgames.
  • Loading branch information
nmlgc committed Feb 3, 2024
1 parent 7639c7e commit ff19bed
Show file tree
Hide file tree
Showing 2 changed files with 112 additions and 85 deletions.
23 changes: 23 additions & 0 deletions th02/main/boss/b3.cpp
@@ -0,0 +1,23 @@
/// Stage 3 Boss - Five Magic Stones
/// --------------------------------

#include "platform.h"
#include "pc98.h"

enum stone_t {
STONE_INNER_WEST = 0,
STONE_INNER_EAST = 1,
STONE_OUTER_WEST = 2,
STONE_OUTER_EAST = 3,
STONE_NORTH = 4,
STONE_COUNT,
};

// Coordinates
// -----------

static const pixel_t STONE_W = 32;

extern screen_x_t stone_left[STONE_COUNT];
extern screen_y_t stone_top[STONE_COUNT];
// -----------

0 comments on commit ff19bed

Please sign in to comment.