Skip to content
Permalink
a01b93a8d6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
19 lines (15 sloc) 347 Bytes
#ifndef _ship_h_
#define _ship_h_
WINDOWS* starterShip(int sy, int sx)
{
char left, right, top, bot, tlc, trc, blc, brc;
WINDOW * ship=newwin(sy, sx, 3, 7);
refresh();
left='|';
right='>';
bot=top='-';
tlc=trc=blc=brc=0;
wborder(ship, left, right, top, bot, tlc, trc, blc, brc);
wrefresh(ship);
}
#endif