shithub: riscv

ref: 059c85dd75f4790625ea3ba19f1c76cf2f3e6b4a
dir: /sys/src/games/xs.h/

View raw version
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <thread.h>
#include <cursor.h>
#include <mouse.h>
#include <keyboard.h>

enum
{
	MAXN = 5
};

typedef struct Piece Piece;
struct Piece{
	short	rot;
	short	tx;
	Point	sz;
	Point	d[MAXN];
};

extern int N, NP;
extern Piece pieces[];