Last active
October 28, 2020 12:37
-
-
Save wildonion/e763a4ecb4d8e56bebede24343609f0b to your computer and use it in GitHub Desktop.
black scary python virus based on "It Follows" movie
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ===================================== | |
| # itFollows - black scary python virus | |
| class Human(): | |
| def __init__(self): | |
| pass | |
| def __haveSex(self): | |
| pass | |
| def __isAlive(self): | |
| pass | |
| def __transpose(self): | |
| pass | |
| def __isFollow(self): | |
| pass | |
| class It(Human): | |
| def __init__(self): | |
| pass | |
| def __walking(self): | |
| pass | |
| def __changeAvatar(self): | |
| pass |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment