ai added lifespans
This commit is contained in:
@@ -32,11 +32,11 @@ struct TextNode
|
||||
unsigned char character_count;
|
||||
unsigned char scroll_slowness;
|
||||
unsigned char scroll_progress;
|
||||
bool is_deleted;
|
||||
short disappear_time;
|
||||
bool is_scrolling;
|
||||
|
||||
|
||||
TextNode() : color(0), pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), is_deleted(true), is_scrolling(true) {}
|
||||
TextNode() : color(0), pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), disappear_time(0), is_scrolling(true) {}
|
||||
};
|
||||
|
||||
struct RGB
|
||||
@@ -75,10 +75,10 @@ struct MultiColorTextNode
|
||||
unsigned char character_count;
|
||||
unsigned char scroll_slowness;
|
||||
unsigned char scroll_progress;
|
||||
bool is_deleted;
|
||||
short disappear_time;
|
||||
bool is_scrolling;
|
||||
|
||||
MultiColorTextNode() : pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), is_deleted(true), is_scrolling(true), color_count(0) {}
|
||||
MultiColorTextNode() : pos_x(0), pos_y(0), character_count(0), scroll_slowness(0), scroll_progress(0), characterSize({7,5}), disappear_time(0), is_scrolling(true), color_count(0) {}
|
||||
};
|
||||
|
||||
struct Image
|
||||
|
||||
Reference in New Issue
Block a user