mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
11 lines
109 B
C++
11 lines
109 B
C++
#pragma once
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostFont
|
|
{
|
|
public:
|
|
virtual void Destroy() = 0;
|
|
};
|
|
}
|