#include "Scene.h" #include "util.h" void Init(int width, int height) { for (int x = 0; x < height; x++) { for (int y = 0; y < width; y++) { SetColor(y, x, 255, 0, 0, 255); } } } void Render() { }