📄 iplayablebase.as
字号:
package org.goasap.interfaces { import flash.events.IEventDispatcher; /** * Defines the portion of the IPlayable interface used by the PlayableBase * class, which provides a standard set of play-state constants used in Go. * * @author Moses Gunesch */ public interface IPlayableBase extends IEventDispatcher { /** * Normally this should only return one of the standard play-state * constants defined in the PlayableBase class. */ function get state () : String; /** * An arbitrary id value for the convenient identification of any * playable instance. * * PlayableBase sets this property to an instance-count by default, * which can be overwritten in program code with any value. */ function get playableID () : *; function set playableID (value: *) : void; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -