You've already forked pico-loader
mirror of
https://github.com/LNH-team/pico-loader.git
synced 2026-01-09 16:28:35 -08:00
10 lines
128 B
C++
10 lines
128 B
C++
#pragma once
|
|
|
|
class LoaderPlatform;
|
|
|
|
class LoaderPlatformFactory
|
|
{
|
|
public:
|
|
LoaderPlatform* CreateLoaderPlatform() const;
|
|
};
|