More progress.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3849 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
package com.threerings.io {
|
||||
|
||||
import flash.events.Event;
|
||||
|
||||
import flash.util.ByteArray;
|
||||
|
||||
public class FrameAvailableEvent extends Event
|
||||
{
|
||||
/** The event code for a frame available. */
|
||||
public static const FRAME_AVAILABLE :String = "frameAvail";
|
||||
|
||||
public function FrameAvailableEvent (frameData :ByteArray)
|
||||
{
|
||||
super(FRAME_AVAILABLE);
|
||||
_frameData = frameData;
|
||||
}
|
||||
|
||||
public function getFrameData () :ByteArray
|
||||
{
|
||||
return _frameData;
|
||||
}
|
||||
|
||||
protected var _frameData :ByteArray;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user