21 lines
800 B
Plaintext
21 lines
800 B
Plaintext
draw_set_halign( fa_center );
|
|
draw_set_font( fn_textlarge );
|
|
draw_text_color(320, 30, "The following is a fan-created derivative work of Touhou Project.\n"
|
|
+ "Touhou Project is the copyright of Team Shanghai Alice.\n\n\n"
|
|
+ "Developed for Touhou Fan Game Jam #7 by magicalfeyfenny\n"
|
|
+ "11/25/2021 ~ 11/28/2021"
|
|
, c_lime, c_lime, c_white, c_white, alpha_cycle);
|
|
|
|
|
|
draw_set_font( fn_textsmall );
|
|
draw_set_halign( fa_right );
|
|
draw_text_color( 630, 320, "Team Shanghai Alice:\n"
|
|
+ "https://www16.big.or.jp/~zun/"
|
|
, c_lime, c_lime, c_white, c_white, alpha_cycle);
|
|
|
|
draw_set_halign( fa_left );
|
|
draw_text_color( 10, 320, "Source code:\n"
|
|
+ "https://git.fenny.space/magicalfeyfenny/thj7"
|
|
, c_lime, c_lime, c_white, c_white, alpha_cycle);
|
|
|