#ifndef DRAWING_H #define DRAWING_H extern "C" { #include #include #include #include } void DrawFilledTriangle(int x1, int y1, int x2, int y2, int x3, int y3, Color c, ScreenBuffer buffer); #endif