mirror of https://github.com/PrimeDecomp/prime.git
22 lines
511 B
C++
22 lines
511 B
C++
#ifndef __CHUDMEMOPARMS_HPP__
|
|
#define __CHUDMEMOPARMS_HPP__
|
|
|
|
#include "types.h"
|
|
class CInputStream;
|
|
class CHUDMemoParms {
|
|
public:
|
|
CHUDMemoParms(CInputStream& in);
|
|
|
|
float GetDisplayTime() const { return mDispTime; }
|
|
bool IsClearMemoWindow() const { return mClearMemoWindow; }
|
|
bool IsFadeOutOnly() const { return mFadeOutOnly; }
|
|
bool IsHintMemo() const { return mHintMemo; }
|
|
|
|
private:
|
|
float mDispTime;
|
|
bool mClearMemoWindow;
|
|
bool mFadeOutOnly;
|
|
bool mHintMemo;
|
|
};
|
|
#endif // __CHUDMEMOPARMS_HPP__
|