// Spiral.
// Written by Nils Liaaen Corneliusen 2019.
// https://www.ignorantus.com
// License: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication license

#ifndef SPIRALH
#define SPIRALH

#include "bmp.h"
#include "vec.h"

void spiral_draw( bmp_argb *dst, v3 col, int frame, bool blend );
//void spiral_texture( bmp_argb *dst, bmp_argb *tx, v3 col, int frame );

#endif
