-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpoke_entry.py
More file actions
17 lines (16 loc) · 1019 Bytes
/
poke_entry.py
File metadata and controls
17 lines (16 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# **************************************************************************** #
# #
# :::::::: #
# poke_entry.py :+: :+: #
# +:+ #
# By: tbruinem <tbruinem@student.codam.nl> +#+ #
# +#+ #
# 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