Skip to content

Instantly share code, notes, and snippets.

@bbSnavy
bbSnavy / mario.py
Created November 20, 2019 22:34
Mario Animation in Python
import os
import time
# Mario Animation in Python
# Source (Written in C): https://www.youtube.com/watch?v=AwpWm6VIGl4
if os.name == 'nt':
clear = 'cls'
else:
clear = 'clear'
package net.hypixel.api.util;
public interface ILeveling {
String EXP_FIELD = "networkExp";
String LVL_FIELD = "networkLevel";
double BASE = 10_000;
double GROWTH = 2_500;
import numpy, math, random
class ILeveling():
def __init__(self):
self.EXP_FIELD = "networkExp"
self.LVL_FIELD = "networkLevel"
self.BASE = 10_000
self.GROWTH = 2_500