mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-04-16 23:36:54 -04:00
Include only what's absolutely necessary to reduce headers pulled into a translation unit. If you need access to instance's from `APPLICATION` include `BaseInstance.h` separately Signed-off-by: Rachel Powers <508861+Ryex@users.noreply.github.com>
18 lines
349 B
C++
18 lines
349 B
C++
#pragma once
|
|
#ifndef PRISM_PRECOMPILED_BASE_HEADERS_H
|
|
#define PRISM_PRECOMPILED_BASE_HEADERS_H
|
|
|
|
#include <algorithm>
|
|
#include <cstddef>
|
|
#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
|