Skip to content

Instantly share code, notes, and snippets.

View lewisjdeane's full-sized avatar
👋
Always working on something interesting

Lewis Deane lewisjdeane

👋
Always working on something interesting
View GitHub Profile
@lewisjdeane
lewisjdeane / 2048.py
Last active April 14, 2024 09:22
2048 main game file written in python
# 2048 Game written using the Pygame module
#
# Lewis Deane
# 23/12/2014
import pygame, sys, time
from pygame.locals import *
from colours import *
from random import *