Skip to content

Instantly share code, notes, and snippets.

View nobucketdev's full-sized avatar
🎯
Focusing

nobucketdev nobucketdev

🎯
Focusing
View GitHub Profile
import curses, time, random
W,H,FPS=50,20,10
DIR = {
ord('w'):(0,-1), ord('W'):(0,-1),
ord('s'):(0, 1), ord('S'):(0, 1),
ord('a'):(-1,0), ord('A'):(-1,0),
ord('d'):(1, 0), ord('D'):(1, 0),
}