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
| #include "raylib.h" | |
| #include "audio_player.h" | |
| struct AudioDataObject audio_coin; | |
| struct AudioDataObject audio_wing; | |
| struct AudioDataObject audio_kick; | |
| void audio_player_awake(){ | |
| InitAudioDevice(); | |
| audio_coin.sound = LoadSound("res/audio/coin.ogg"); |
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
| import sys | |
| import socket | |
| import threading | |
| from PySide6.QtWidgets import (QApplication, QMainWindow, QVBoxLayout, QHBoxLayout, QLabel, QLineEdit, QPushButton, QTextEdit, QWidget) | |
| from PySide6.QtCore import Signal, QObject, Qt | |
| class ReceiverSignals(QObject): | |
| packet_received = Signal(str) | |
| error_occurred = Signal(str) |
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
| import winreg | |
| import ctypes | |
| import os | |
| script_dir = os.path.dirname(os.path.abspath(__file__)) | |
| blank_cur_path = os.path.join(script_dir, "blank.cur") | |
| cursor_icons = { | |
| "AppStarting":"%SystemRoot%\\cursors\\aero_working.ani", | |
| "Arrow":"%SystemRoot%\\cursors\\aero_arrow.cur", |
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
| server { | |
| listen 443 ssl default_server; | |
| listen [::]:443 ssl default_server; | |
| server_name _; | |
| return 444; | |
| } | |
| server { | |
| listen 80 default_server; | |
| listen [::]:80 default_server; |