Moving stuff around, nothing to see here
git-svn-id: https://aklabs.dyndns.org/svn/aklabs/trunk/games/wilysays@50 eb184899-6090-47d4-a65b-558f62f6ea1c
This commit is contained in:
22
net/aklabs/demo/simonsays/MastermindEvent.as
Executable file
22
net/aklabs/demo/simonsays/MastermindEvent.as
Executable file
@@ -0,0 +1,22 @@
|
||||
package net.aklabs.demo.simonsays
|
||||
{
|
||||
import flash.events.Event;
|
||||
|
||||
/*
|
||||
* Class : MastermindEvent
|
||||
*
|
||||
* This class basically just defines a custom event that will let the mastermind send up
|
||||
* a clicked event w/ a color.
|
||||
*/
|
||||
public class MastermindEvent extends Event
|
||||
{
|
||||
public static var BTN_CLICKED:String = "MASTERMIND_BUTTON_CLICKED";
|
||||
public var colorClicked:Number;
|
||||
|
||||
public function MastermindEvent(evtType:String)
|
||||
{
|
||||
super(evtType);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user