Skip to content

Commit

Permalink
fix: ignore private functions
Browse files Browse the repository at this point in the history
  • Loading branch information
Notexe committed Feb 4, 2024
1 parent 9e1d141 commit 18d0f5d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions G2GFxDataTool/ParseSWF.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ internal static List<ASClass> ParseAS(string filename)

foreach (MemberInfo info in members)
{
if (info.name.uri == "private")
{
continue;
}
if (info is MethodInfo)
{
MethodInfo method = info as MethodInfo;
Expand Down

0 comments on commit 18d0f5d

Please sign in to comment.