Skip to content

Commit 79a8b5d

Browse files
committed
Added interface for ICompoundCommandContext.'
And context implementation example.
1 parent 0e766f2 commit 79a8b5d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ No swc as you should compile from source to ensure it extends the same version o
88

99
In your context:
1010

11+
// implement this interface:
12+
import org.robotlegs.core.ICompoundCommandContext;
13+
1114
protected var _compoundCommandMap:ICompoundCommandMap;
1215

1316
public function get compoundCommandMap():ICompoundCommandMap
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package org.robotlegs.core
2+
{
3+
4+
public interface ICompoundCommandContext
5+
{
6+
function get compoundCommandMap():ICompoundCommandMap;
7+
function set compoundCommandMap(value:ICompoundCommandMap):void;
8+
}
9+
10+
}
11+

0 commit comments

Comments
 (0)