///////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2010 Wolfgang Kowarschick // // Permission is granted to copy, distribute and/or modify this document // under the terms of the WK License, Version 1.0 (WKL 1.0) or any later // version published by Wolfgang Kowarschick. ///////////////////////////////////////////////////////////////////////////////// package die.model { import wki.mvcs.model.WKI_Model; /** * @autor Wolfgang Kowarschick * @category interface * @langversion 3.0 */ [Bindable] public interface IModelDie extends WKI_Model { ///////////////////////////////////////////////////////////////////////////// // Methods ///////////////////////////////////////////////////////////////////////////// function get state(): String; function get value(): uint; function set value(p_value: uint): void; function rollTheDie(): void; ///////////////////////////////////////////////////////////////////////////// // End of interface ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of File /////////////////////////////////////////////////////////////////////////////////