mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-30 02:20:00 +03:00
16 lines
330 B
C++
16 lines
330 B
C++
#pragma once
|
|
#ifndef PRISM_PRECOMPILED_BASE_HEADERS_H
|
|
#define PRISM_PRECOMPILED_BASE_HEADERS_H
|
|
|
|
#include <algorithm>
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <optional>
|
|
#include <utility>
|
|
|
|
#include <BuildConfig.h>
|
|
#include <FileSystem.h>
|
|
#include <Json.h>
|
|
#include <Version.h>
|
|
|
|
#endif // PRISM_PRECOMPILED_BASE_HEADERS_H
|