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 <hxcpp.h> | |
#ifndef INCLUDED_AnalyticsImpl | |
#include <AnalyticsImpl.h> | |
#endif | |
#ifndef INCLUDED_haxe_Log | |
#include <haxe/Log.h> | |
#endif | |
Void AnalyticsImpl_obj::__construct() |
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 ; | |
#if macro | |
import haxe.macro.Context; | |
import haxe.macro.Expr; | |
#end | |
/** | |
* ... | |
* @author deep <[email protected]> | |
*/ | |
class Measure |
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 ; | |
import org.flixel.FlxG; | |
import org.flixel.FlxSprite; | |
import org.flixel.FlxGroup; | |
import org.flixel.FlxTypedGroup; | |
import Analytics; | |
class FinalWindow extends FlxGroup implements IGameDialog |
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 ; | |
import org.flixel.FlxState; | |
import org.flixel.FlxObject; | |
import org.flixel.FlxG; | |
class GameState extends FlxState | |
{ | |
public var dialog : IGameDialog; |
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
if (FlxG.mouse.justPressed ()) | |
{ | |
if (storeIcon.overlapsPoint (FlxG.mouse)) | |
{ | |
showStoreWindow (); | |
handled = true; | |
} | |
else if (finalIcon.overlapsPoint (FlxG.mouse)) | |
{ | |
showFinalWindow (); |
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 ; | |
import org.flixel.FlxG; | |
import org.flixel.plugin.pxText.PxBitmapFont; | |
import nme.display.BitmapData; | |
import nme.geom.Rectangle; | |
class BitmapFont extends PxBitmapFont | |
{ | |
private var glyphWidth:Int; |
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; | |
import org.flixel.FlxButton; | |
import org.flixel.FlxG; | |
import org.flixel.FlxSprite; | |
import org.flixel.FlxState; | |
import org.flixel.plugin.photonstorm.FlxDisplay; | |
class MenuState extends FlxState | |
{ |
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
from cProfile import Profile | |
from pstats import Stats | |
from os import environ | |
def profile (meth) : | |
if "ENABLE_PROFILE" not in environ : | |
return meth | |
profiler = Profile () |
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
<?xml version="1.0" encoding="utf-8"?> | |
<project> | |
<!-- <meta /> | |
Use meta nodes to set metadata for your application. The description is ignored | |
on most targets, but is useful for packaging like Chrome Apps or Opera Widgets. | |
For compatibility with Android and webOS, the package name must include at least |
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
Было | |
89 function calls in 0.594 seconds | |
Ordered by: cumulative time, call count | |
ncalls tottime percall cumtime percall filename:lineno(function) | |
1 0.005 0.005 0.594 0.594 MaskGenerator.py:19(getMaskForRow) | |
1 0.205 0.205 0.589 0.589 MaskGenerator.py:10(getMask) | |
1 0.014 0.014 0.384 0.384 MaskGenerator.py:29(__getRegionMask) | |
1 0.182 0.182 0.371 0.371 MaskGenerator.py:44(__getStatementRegionMask) |