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

15 lines
298 B
C++

#ifndef UI_SIMPLE_C_SIMPLE_FONTED_FRAME_HPP
#define UI_SIMPLE_C_SIMPLE_FONTED_FRAME_HPP
#include <cstdint>
class CSimpleFontedFrameFont;
class CSimpleFontedFrame {
public:
// Virtual member functions
virtual void FontUpdated(CSimpleFontedFrameFont*, int32_t) = 0;
};
#endif