Move FreeType handling into the Platform dll.

This commit is contained in:
Paul Chote
2019-03-06 20:16:58 +00:00
committed by reaperrr
parent e2a51676f7
commit 1d4576229a
8 changed files with 139 additions and 49 deletions

View File

@@ -24,5 +24,10 @@ namespace OpenRA.Platforms.Default
{
return new OpenAlSoundEngine(device);
}
public IFont CreateFont(byte[] data)
{
return new FreeTypeFont(data);
}
}
}