Skylicht Engine
Loading...
Searching...
No Matches
IInAppReview.h
1#pragma once
2
3#include <functional>
4
5namespace Skylicht
6{
7 class IInAppReview
8 {
9 public:
10 IInAppReview();
11
12 virtual ~IInAppReview();
13
14 virtual void showInAppReview(bool isTesting = false) = 0;
15 };
16
17 IInAppReview* getInAppReview();
18}
Definition IInAppReview.h:8
Everything in the Skylicht Engine. You can start by looking at the topics.
Definition AudioDebugLog.h:29