mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-15 00:41:57 +00:00
33 lines
602 B
C++
33 lines
602 B
C++
#ifndef __A_LIGHTNING_H__
|
|
#define __A_LIGHTNING_H__
|
|
|
|
#ifdef _MSC_VER
|
|
#pragma once
|
|
#endif
|
|
|
|
#include "dthinker.h"
|
|
|
|
class DLightningThinker : public DThinker
|
|
{
|
|
DECLARE_CLASS (DLightningThinker, DThinker);
|
|
public:
|
|
DLightningThinker ();
|
|
~DLightningThinker ();
|
|
void Serialize(FSerializer &arc);
|
|
void Tick ();
|
|
void ForceLightning (int mode);
|
|
void TerminateLightning();
|
|
|
|
protected:
|
|
void LightningFlash ();
|
|
|
|
int NextLightningFlash;
|
|
int LightningFlashCount;
|
|
bool Stopped;
|
|
TArray<short> LightningLightLevels;
|
|
};
|
|
|
|
void P_StartLightning ();
|
|
void P_ForceLightning (int mode);
|
|
|
|
#endif //__A_LIGHTNING_H__
|