whoa/src/ui/simple/CSimpleFontedFrameFont.hpp
2025-12-06 21:31:48 -06:00

20 lines
436 B
C++

#ifndef UI_SIMPLE_C_SIMPLE_FONTED_FRAME_FONT_HPP
#define UI_SIMPLE_C_SIMPLE_FONTED_FRAME_FONT_HPP
#include "ui/simple/CSimpleFont.hpp"
class CSimpleFontedFrame;
class CSimpleFontedFrameFont : public CSimpleFont {
public:
// Member variables
CSimpleFontedFrame* m_frame;
// Member functions
CSimpleFontedFrameFont(CSimpleFontedFrame* frame)
: m_frame(frame)
{};
};
#endif