Skip to content

Instantly share code, notes, and snippets.

View kchang2's full-sized avatar

kchang2

View GitHub Profile
@kchang2
kchang2 / quick_game.py
Created December 31, 2016 21:09
Simple object creation in Python using a 2 player battle simulator as an example.
'''
A rather lengthy battle combat between two characters without rehealing properties.
Leveling up does not count as a recovery property.
'''
import numpy as np
class character(object):