Skip to content

Commit

Permalink
Implements Dynamic is not a thing in haxe 4. For #640
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsando committed Aug 18, 2019
1 parent cf7ee97 commit e0af9cd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/nme/display/MovieClip.hx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@ package nme.display;
#if (!flash)

@:nativeProperty
#if haxe4
class MovieClip extends Sprite
#else
class MovieClip extends Sprite implements Dynamic<DisplayObject>
#end
{
public var currentFrame(get, null):Int;
public var enabled:Bool;
Expand Down

0 comments on commit e0af9cd

Please sign in to comment.