Skip to content

Instantly share code, notes, and snippets.

View daCFniel's full-sized avatar
✔️

Daniel Bielech daCFniel

✔️
View GitHub Profile
@daCFniel
daCFniel / easycoding001.py
Created May 25, 2020 21:47
easycoding.pl [pygame] - jump
import os
import pygame
pygame.init()
# super class
class Character:
# constructor
def __init__(self, img, x, y, x_change, y_change):
self.img = img
self.x = x