1
0
mirror of https://gitlab.com/camelot/kickc.git synced 2024-10-21 02:24:34 +00:00

added comment

This commit is contained in:
jespergravgaard 2019-07-31 16:08:16 +02:00
parent 832a104c0a
commit bb27de00ce

View File

@ -11,6 +11,7 @@ const char* PRINT_SCREEN = 0x0400;
const char* BITMAP_SCREEN = 0x5c00;
const char* BITMAP_GRAPHICS = 0x6000;
// A segment of a spline
struct Segment {
enum SegmentType { MOVE_TO, SPLINE_TO, LINE_TO} type;
struct SplineVector16 to;