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/env python3 | |
""" | |
Converts .lopus to .ogg via vgmstream & ffmpeg | |
""" | |
__author__ = "Melon Bread" | |
__version__ = "0.5.0" | |
__license__ = "MIT" | |
import argparse |
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
{ | |
"config": { | |
"self_updater": false, | |
"delete_archives": true, | |
"delete_CIA/MultiUpdater": false | |
}, | |
"entries": [ | |
{ | |
"name": "Anemone3DS", | |
"url": "https://github.com/astronautlevel2/Anemone3DS", |
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
#This is just a copy of the handling_events example from Cocos2D for reference | |
import cocos | |
import pyglet | |
class KeyDisplay(cocos.layer.Layer): | |
is_event_handler = True | |
def __init__(self): | |
super(KeyDisplay, self).__init__() |