-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fix handling of conditionals - parse animations preserves subaction index
- Loading branch information
1 parent
7d5b615
commit da0d825
Showing
6 changed files
with
77 additions
and
20 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using Sm4shCommand.Classes; | ||
using System.Windows.Forms; | ||
using System.ComponentModel; | ||
|
||
namespace Sm4shCommand.Nodes | ||
{ | ||
class ACMDNode : BaseNode | ||
{ | ||
private static ContextMenuStrip _menu; | ||
static ACMDNode() | ||
{ | ||
_menu = new ContextMenuStrip(); | ||
_menu.Items.Add(new ToolStripMenuItem("New Script", null, NewScriptAction)); | ||
} | ||
protected static void NewScriptAction(object sender, EventArgs e) | ||
{ | ||
|
||
} | ||
public void AcmdMain(ACMDFile resource) | ||
{ | ||
|
||
} | ||
} | ||
} |
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
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
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