+Upload
This commit is contained in:
15
client/main.py
Normal file
15
client/main.py
Normal file
@@ -0,0 +1,15 @@
|
||||
import customtkinter
|
||||
|
||||
class App(customtkinter.CTk):
|
||||
def __init__(self):
|
||||
super().__init__()
|
||||
|
||||
self.title("Pycord Client")
|
||||
self.geometry("800x600")
|
||||
|
||||
self.label = customtkinter.CTkLabel(self, text="Willkommen bei Pycord!", font=("Roboto", 24))
|
||||
self.label.pack(pady=20)
|
||||
|
||||
if __name__ == "__main__":
|
||||
app = App()
|
||||
app.mainloop()
|
Reference in New Issue
Block a user