Skip to content

Instantly share code, notes, and snippets.

@caubry
Created February 2, 2013 11:03
Show Gist options
  • Save caubry/4696898 to your computer and use it in GitHub Desktop.
Save caubry/4696898 to your computer and use it in GitHub Desktop.
import MouseTrail.Interface;
class MouseTrail.Main
{
private static var m:Main;
var int:Interface;
public function Main(root:MovieClip)
{
int = new Interface(root);
}
public static function main(root:MovieClip)
{
m = new Main(root);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment