Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/grisevg/monsterdebugger

Haxe Bindings for Monster Debugger 3 (http://www.demonsterdebugger.com/)
https://github.com/grisevg/monsterdebugger

Last synced: 3 months ago
JSON representation

Haxe Bindings for Monster Debugger 3 (http://www.demonsterdebugger.com/)

Awesome Lists containing this project

README

        

# Haxe Bindings for Monster Debugger 3

More info: http://www.demonsterdebugger.com/

## Setup instructions

1. Install library: `haxelib install monsterdebugger`.
2. Add library to your project: `-lib monsterdebugger` or ``
3. Initialise monster debugger in your code:

```haxe
import flash.display.Sprite;

#if (debug && flash)
import com.demonsters.debugger.MonsterDebugger;
#end

class Main extends Sprite
{
public function new ()
{
super();
#if (debug && flash)
MonsterDebugger.initialize(this);
MonsterDebugger.trace(this, "Hello World!");
#end
}
}
```