Noise-generator/includes/window.hpp
2024-12-14 00:47:43 +01:00

13 lines
No EOL
305 B
C++

#ifndef WINDOW_HPP
#define WINDOW_HPP
#define WIDTH 720
#define HEIGHT 420
int graph(uint32_t *img, bool &needUpdate);
int cloud(uint32_t *img, bool &needUpdate);
int marble(uint32_t *img, bool &needUpdate);
int random(uint32_t *img, bool &needUpdate);
int wood(uint32_t *img, bool &needUpdate);
#endif