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 <windows.h> | |
#include <GLFW/glfw3.h> | |
#include <iostream> | |
// change this to int main() to allow the console | |
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, char*, int nShowCmd) | |
{ | |
GLFWwindow* window; | |
int windowSizeW = 640, windowSizeH = 480; | |
// initialize the library |
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 <iostream> | |
#include <chrono> | |
#include <thread> | |
#include <fmod.hpp> | |
#include <fmod_errors.h> | |
bool succeededOrWarn(const std::string &message, FMOD_RESULT result) | |
{ |
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
#!/usr/bin/python3 | |
# -*- coding: utf-8 -*- | |
from PyQt5.QtGui import QPalette, QKeySequence, QIcon | |
from PyQt5.QtCore import QDir, Qt, QUrl, QSize, QPoint, QTime, QMimeData, QProcess, QEvent | |
from PyQt5.QtMultimedia import QMediaContent, QMediaPlayer, QMediaMetaData | |
from PyQt5.QtMultimediaWidgets import QVideoWidget | |
from PyQt5.QtWidgets import (QApplication, QFileDialog, QHBoxLayout, QLineEdit, | |
QPushButton, QSizePolicy, QSlider, QMessageBox, QStyle, QVBoxLayout, | |
QWidget, QShortcut, QMenu) |