mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-06-02 09:16:49 +02:00
10 lines
128 B
C++
10 lines
128 B
C++
#pragma once
|
|
|
|
class LoaderPlatform;
|
|
|
|
class LoaderPlatformFactory
|
|
{
|
|
public:
|
|
LoaderPlatform* CreateLoaderPlatform() const;
|
|
};
|