archeus/include/arc/graphics/line.h

20 lines
376 B
C
Raw Normal View History

#ifndef ARC_GRAPHICS_LINE_H_
#define ARC_GRAPHICS_LINE_H_
#ifdef __cplusplus
extern "C" {
#endif
#include "arc/graphics/color.h"
#include "arc/graphics/renderer.h"
#include "arc/math/point.h"
#include <stdint.h>
void ARC_Line_Render(ARC_Point point1, ARC_Point point2, ARC_Renderer *renderer, ARC_Color color);
#ifdef __cplusplus
}
#endif
#endif // !ARC_GRAPHICS_LINE_H_