NasNas
An intuitive and beginner friendly 2D game framework for C++
Arial.hpp
1 
6 #pragma once
7 
8 #include <SFML/Graphics/Font.hpp>
9 
10 namespace ns {
11 
12  class Arial {
13  public:
14  static auto getFont() -> sf::Font&;
15 
16  private:
17  static const unsigned char data[] ;
18  static const unsigned int len;
19 
20  explicit Arial();
21  sf::Font m_font;
22  };
23 
24 }