OpenRCT2/src/openrct2/Intro.h

36 lines
822 B
C
Raw Normal View History

/*****************************************************************************
* Copyright (c) 2014-2024 OpenRCT2 developers
2015-10-20 20:16:30 +02:00
*
* For a complete list of all authors, please refer to contributors.md
* Interested in contributing? Visit https://github.com/OpenRCT2/OpenRCT2
2015-10-20 20:16:30 +02:00
*
* OpenRCT2 is licensed under the GNU General Public License version 3.
*****************************************************************************/
2015-10-20 20:16:30 +02:00
#pragma once
#include "common.h"
struct DrawPixelInfo;
2016-06-05 16:40:19 +02:00
enum class IntroState : uint8_t
2018-06-22 23:25:16 +02:00
{
None,
PublisherBegin,
PublisherScroll,
DeveloperBegin,
DeveloperScroll,
LogoFadeIn,
LogoWait,
LogoFadeOut,
Disclaimer1,
Disclaimer2,
Clear = 254,
Finish = 255,
};
extern IntroState gIntroState;
void IntroUpdate();
2023-04-03 21:37:10 +02:00
void IntroDraw(DrawPixelInfo& dpi);