removed pointless pointers in line and circle

This commit is contained in:
herbglitch 2025-03-18 23:58:47 -06:00
parent 56175ccb1b
commit bbffbe1cb3
5 changed files with 18 additions and 18 deletions

View file

@ -7,10 +7,10 @@ extern "C" {
#include "arc/graphics/color.h"
#include "arc/graphics/renderer.h"
#include "arc/math/rectangle.h"
#include "arc/math/point.h"
#include <stdint.h>
void ARC_Line_Render(int32_t *x1, int32_t *y1, int32_t *x2, int32_t *y2, ARC_Renderer *renderer, ARC_Color *color);
void ARC_Line_Render(ARC_Point point1, ARC_Point point2, ARC_Renderer *renderer, ARC_Color color);
#ifdef __cplusplus
}