├── LICENSE ├── README.md ├── callback.h ├── catch.cpp ├── catch.hpp ├── test.mk ├── tween.cpp └── tween.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/tween/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/tween/HEAD/README.md -------------------------------------------------------------------------------- /callback.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/tween/HEAD/callback.h -------------------------------------------------------------------------------- /catch.cpp: -------------------------------------------------------------------------------- 1 | #define CATCH_CONFIG_MAIN 2 | #include "catch.hpp" 3 | -------------------------------------------------------------------------------- /catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/tween/HEAD/catch.hpp -------------------------------------------------------------------------------- /test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/tween/HEAD/test.mk -------------------------------------------------------------------------------- /tween.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/tween/HEAD/tween.cpp -------------------------------------------------------------------------------- /tween.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sasq64/tween/HEAD/tween.h --------------------------------------------------------------------------------