feat: multiple circles

This commit is contained in:
2025-11-07 10:14:06 +01:00
parent 42183469ab
commit 90ee367dc6
3 changed files with 35 additions and 8 deletions

14
include/sims.hpp Normal file
View File

@@ -0,0 +1,14 @@
#ifndef SIMS_HPP
#define SIMS_HPP
#include <SDL3/SDL_render.h>
namespace sims {
typedef struct {
int x;
int y;
int r;
} body;
void two_bodies(SDL_Renderer *r);
}
#endif