-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c8c32b2
commit 3e71e54
Showing
28 changed files
with
891 additions
and
562 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,6 @@ | ||
namespace Flazzy.ABC; | ||
|
||
public abstract class AS3Item : FlashItem | ||
public interface IAS3Item | ||
{ | ||
public ABCFile ABC { get; } | ||
|
||
public AS3Item(ABCFile abc) | ||
{ | ||
ABC = abc; | ||
} | ||
|
||
public virtual string ToAS3() | ||
{ | ||
throw new NotSupportedException(); | ||
} | ||
string ToAS3(); | ||
} |
This file contains 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
Oops, something went wrong.