You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
226 B

  1. #include "Scene.h"
  2. #include "util.h"
  3. void Init(int width, int height)
  4. {
  5. for (int x = 0; x < height; x++) {
  6. for (int y = 0; y < width; y++) {
  7. SetColor(y, x, 255, 0, 0, 255);
  8. }
  9. }
  10. }
  11. void Render()
  12. {
  13. }