struct EE::Graphics::DrawableResourceCallbackState

#include <drawableresource.hpp>

struct DrawableResourceCallbackState {
    // typedefs

    typedef std::function<void(DrawableResource&)> Callback;

    // fields

    Uint32 nextId { 0 };
    SmallVector<std::pair<Uint32, Callback>, 2> callbacks;
};