mirror of
https://github.com/zeldaret/botw
synced 2026-06-22 08:15:46 -04:00
15 lines
226 B
C++
15 lines
226 B
C++
#pragma once
|
|
|
|
namespace ksys {
|
|
|
|
// FIXME: incomplete; requires GameData
|
|
class ProductReporter {
|
|
public:
|
|
ProductReporter() = default;
|
|
virtual ~ProductReporter();
|
|
|
|
static bool getSomeBool();
|
|
};
|
|
|
|
} // namespace ksys
|