///////////////////////////////////////////////////////////////////////////////// // 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 { /** * @autor Wolfgang Kowarschick * @category class * @langversion 3.0 */ public class ConstantsDice { ///////////////////////////////////////////////////////////////////////////// // Constants ///////////////////////////////////////////////////////////////////////////// public static const NUMBER_OF_DICE: uint = 3; public static const NUMBER_OF_ROLLS: uint = 10; public static const DELAY: uint = 50; public static const ROLLING: String = "rolling"; public static const THROWN: String = "thrown"; public static const NO_VALUE: String = "no value"; ///////////////////////////////////////////////////////////////////////////// // End of class ///////////////////////////////////////////////////////////////////////////// } } ///////////////////////////////////////////////////////////////////////////////// // End of File /////////////////////////////////////////////////////////////////////////////////