Removed old font parts

This commit is contained in:
2023-06-17 20:26:26 -07:00
parent 4e1e1cacfb
commit 9431ecfe00
12 changed files with 0 additions and 13 deletions

22
archive/ExampleFont.hpp Normal file
View File

@ -0,0 +1,22 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "BitmapFont.hpp"
namespace Dawn {
class ExampleFont : public BitmapFont {
protected:
Texture realTexture;
TilesetGrid realTilesetGrid;
struct Color getColor(uint8_t n);
public:
ExampleFont();
void init();
};
}