Skylicht Engine
Loading...
Searching...
No Matches
CIOSInAppReview.h
1#pragma once
2
3#include "Utils/CSingleton.h"
4#include "IInAppReview.h"
5
6namespace Skylicht
7{
8 class CIOSInAppReview : public IInAppReview
9 {
10 public:
11 CIOSInAppReview();
12
13 virtual ~CIOSInAppReview();
14
15 DECLARE_SINGLETON(CIOSInAppReview)
16
17 virtual void showInAppReview(bool isTesting = false);
18 };
19}
#define DECLARE_SINGLETON(className)
Declare the standard singleton accessors for a class.
Definition CSingleton.h:36
Everything in the Skylicht Engine. You can start by looking at the topics.
Definition AudioDebugLog.h:29