thunderbrew/src/ui/CSimpleFontedFrame.hpp
2023-01-02 13:17:18 -06:00

15 lines
284 B
C++

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