mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 13:11:19 +01:00
14 lines
288 B
C++
14 lines
288 B
C++
#ifndef _RIVE_BACKBOARD_HPP_
|
|
#define _RIVE_BACKBOARD_HPP_
|
|
#include "generated/backboard_base.hpp"
|
|
namespace rive
|
|
{
|
|
class Backboard : public BackboardBase
|
|
{
|
|
public:
|
|
void onAddedDirty(CoreContext* context) {}
|
|
void onAddedClean(CoreContext* context) {}
|
|
};
|
|
} // namespace rive
|
|
|
|
#endif |