1 #include "draw.h"
2 #include "internal.h"
3 #include "../textgfx/textgfx.h"
4 
draw_2p_menu_decor(int pl,int x,int y)5 void draw_2p_menu_decor(int pl, int x, int y)
6 {
7 	x++;
8 	drawstr("\\l\\x", 0, x, y-1);
9 	y += 2;
10 	setcurs(x-1, y);
11 	putch(pl+'0');
12 	drawstr("P\\x\\2m", 0, x, y);
13 }
14