summaryrefslogtreecommitdiff
path: root/raylib.adb
blob: 89fe8afd919e1e9f75db7e948873b2bcae0233ca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package body Raylib is
    procedure Draw_Triangle_Strip(Points: Vector2_Array; C: Color) is
        procedure Draw_Triangle_Strip_C(Points: Vector2_Array; Point_Count: Int; C: Color)
          with
            Import => True,
            Convention => C,
            External_Name => "DrawTriangleStrip";
    begin
        Draw_Triangle_Strip_C(Points, Points'Length, C);
    end;

end Raylib;