-
Notifications
You must be signed in to change notification settings - Fork 5
/
poke_entry.py
17 lines (16 loc) · 1019 Bytes
/
poke_entry.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# **************************************************************************** #
# #
# :::::::: #
# poke_entry.py :+: :+: #
# +:+ #
# By: tbruinem <[email protected]> +#+ #
# +#+ #
# Created: 2021/01/01 19:53:10 by tbruinem #+# #+# #
# Updated: 2021/01/01 20:52:03 by tbruinem ######## odam.nl #
# #
# **************************************************************************** #
class PokeEntry:
def __init__(self, name="", types=[], moves=[]):
self.name = name
self.types = types
self.moves = moves