mirror of
https://github.com/ssstolk/rts4ds.git
synced 2025-06-19 01:15:32 -04:00
17 lines
425 B
C
17 lines
425 B
C
// SPDX-License-Identifier: MIT
|
|
// Copyright © 2007-2025 Sander Stolk
|
|
|
|
#ifndef _CUTSCENE_INTRODUCTION_H_
|
|
#define _CUTSCENE_INTRODUCTION_H_
|
|
|
|
#include "game.h"
|
|
|
|
void drawCutsceneIntroduction();
|
|
void drawCutsceneIntroductionBG();
|
|
void doCutsceneIntroductionLogic();
|
|
void loadCutsceneIntroductionGraphics(enum GameState oldState);
|
|
int initCutsceneIntroduction();
|
|
void initCutsceneIntroductionFilename();
|
|
|
|
#endif
|