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 urllib.request, urllib.error, urllib.parse | |
import json | |
import base64 | |
#==== configurations ======= | |
username = "username" | |
password = "password" | |
src_repo = "AdamAtomic/flixel" | |
dst_repo = "FlixelCommunity/flixel" | |
#==== end of configurations === |
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
package org.flixel.system | |
{ | |
import org.flixel.FlxG; | |
import org.flixel.FlxObject; | |
/** | |
* A miniature linked list class. | |
* Useful for optimizing time-critical or highly repetitive tasks! | |
* See <code>FlxQuadTree</code> for how to use it, IF YOU DARE. | |
*/ |
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
package org.flixel | |
{ | |
import flash.display.BitmapData; | |
import flash.events.Event; | |
import flash.events.FocusEvent; | |
import flash.events.KeyboardEvent; | |
import flash.events.MouseEvent; | |
import flash.geom.Rectangle; | |
import flash.text.TextField; | |
import flash.text.TextFieldType; |