taisei/src/stages/stage1/stage1.h

45 lines
944 B
C
Raw Normal View History

/*
* This software is licensed under the terms of the MIT License.
* See COPYING for further information.
* ---
2024-05-16 23:30:41 +02:00
* Copyright (c) 2011-2024, Lukas Weber <laochailan@web.de>.
* Copyright (c) 2012-2024, Andrei Alexeyev <akari@taisei-project.org>.
*/
#pragma once
#include "taisei.h"
#include "stageinfo.h"
#if defined(DEBUG) && !defined(SPELL_BENCHMARK)
#define SPELL_BENCHMARK
#endif
extern struct stage1_spells_s {
// this struct must contain only fields of type AttackInfo
// order of fields affects the visual spellstage number, but not its real internal ID
struct {
AttackInfo perfect_freeze;
} mid;
struct {
AttackInfo crystal_rain;
AttackInfo snow_halation;
AttackInfo icicle_cascade;
} boss;
struct {
AttackInfo crystal_blizzard;
} extra;
// required for iteration
AttackInfo null;
} stage1_spells;
2017-02-26 13:17:48 +01:00
extern StageProcs stage1_procs;
#ifdef SPELL_BENCHMARK
2018-01-21 19:30:12 +01:00
extern AttackInfo stage1_spell_benchmark;
#endif