mirror of
https://github.com/thunderbrewhq/thunderbrew
synced 2026-01-30 19:42:51 +03:00
15 lines
284 B
C++
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
|