mirror of
https://github.com/rive-app/rive-cpp.git
synced 2026-01-18 21:21:17 +01:00
Diffs= 507af3256 Add android unit tests and remove running tests in platform testing (#8067) Co-authored-by: rivessamr <suki@rive.app>
9 lines
280 B
C++
9 lines
280 B
C++
#include "rive/span.hpp"
|
|
|
|
namespace assets
|
|
{
|
|
constexpr static unsigned int paper_riv_data_len = 2403906;
|
|
extern unsigned char paper_riv_data[paper_riv_data_len];
|
|
inline static rive::Span<uint8_t> paper_riv() { return {paper_riv_data, paper_riv_data_len}; }
|
|
}; // namespace assets
|