From 3c487c5cd69c53d6fea948643c0a76df03516605 Mon Sep 17 00:00:00 2001 From: Aki Date: Fri, 1 Apr 2022 21:23:39 +0200 Subject: Moved Stars45 to StarsEx --- Stars45/FontMgr.cpp | 56 ----------------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 Stars45/FontMgr.cpp (limited to 'Stars45/FontMgr.cpp') diff --git a/Stars45/FontMgr.cpp b/Stars45/FontMgr.cpp deleted file mode 100644 index 2e1529a..0000000 --- a/Stars45/FontMgr.cpp +++ /dev/null @@ -1,56 +0,0 @@ -/* Starshatter: The Open Source Project - Copyright (c) 2021-2022, Starshatter: The Open Source Project Contributors - Copyright (c) 2011-2012, Starshatter OpenSource Distribution Contributors - Copyright (c) 1997-2006, Destroyer Studios LLC. - - AUTHOR: John DiCamillo - - - OVERVIEW - ======== - Font Resource Manager class implementation -*/ - -#include "FontMgr.h" - -// +--------------------------------------------------------------------+ - -List FontMgr::fonts; - -// +--------------------------------------------------------------------+ - -void -FontMgr::Close() -{ - fonts.destroy(); -} - -// +--------------------------------------------------------------------+ - -void -FontMgr::Register(const char* name, Font* font) -{ - FontItem* item = new FontItem; - - if (item) { - item->name = name; - item->size = 0; - item->font = font; - - fonts.append(item); - } -} - -// +--------------------------------------------------------------------+ - -Font* -FontMgr::Find(const char* name) -{ - ListIter item = fonts; - while (++item) { - if (item->name == name) - return item->font; - } - - return 0; -} -- cgit v1.1