2025-01-10 19:09:40 +01:00
|
|
|
#pragma once
|
|
|
|
|
|
2025-01-23 21:55:41 +01:00
|
|
|
#include "../helpers/memory/Memory.hpp"
|
2025-01-10 19:09:40 +01:00
|
|
|
|
|
|
|
|
class CDonationNagManager {
|
|
|
|
|
public:
|
|
|
|
|
CDonationNagManager();
|
|
|
|
|
|
|
|
|
|
// whether the donation nag was shown this boot.
|
|
|
|
|
bool fired();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
bool m_bFired = false;
|
|
|
|
|
};
|
|
|
|
|
|
2025-01-23 21:55:41 +01:00
|
|
|
inline UP<CDonationNagManager> g_pDonationNagManager;
|