-
Notifications
You must be signed in to change notification settings - Fork 0
/
event.py
40 lines (29 loc) · 1.02 KB
/
event.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Filename: event.py
# import into another file by using "from event import Event"
#=========================================
#= Event Class =
#=========================================
import discord
import asyncio
class Event():
#===================================================
#= Variables =
#===================================================
__creator = None
__duration = None
__startTime = None
__voice = None
__text = None
#==========================================================
#= Public Functions =
#==========================================================
def __init__(self):
pass
def createVoiceChannel(__startTime, __duration):
__startTime = __startTime
__duration = __duration
pass
def createTextChannel(__startTime, __duration):
__startTime = __startTime
__duration = __duration
pass