mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
15 lines
298 B
C++
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
|