|
12345678910111213141516171819202122232425262728293031 |
- //
- // Lol Engine
- //
- // Copyright: (c) 2010-2011 Sam Hocevar <sam@hocevar.net>
- // This program is free software; you can redistribute it and/or
- // modify it under the terms of the Do What The Fuck You Want To
- // Public License, Version 2, as published by Sam Hocevar. See
- // http://sam.zoy.org/projects/COPYING.WTFPL for more details.
- //
-
- //
- // The Forge class
- // ---------------
- // The Forge is a static class that manages fonts.
- //
-
- #if !defined __DH_FORGE_H__
- #define __DH_FORGE_H__
-
- #include "font.h"
-
- class Forge
- {
- public:
- static int Register(char const *path);
- static void Deregister(int id);
- static Font *GetFont(int id);
- };
-
- #endif // __DH_FORGE_H__
-
|