CSJ2K.j2k.ModuleSpec.isTileSpecified C# (CSharp) Method

isTileSpecified() public method

Whether or not specifications have been entered for the given tile.
public isTileSpecified ( int t ) : bool
t int Index of the tile /// ///
return bool
        public virtual bool isTileSpecified(int t)
        {
            if (tileDef == null || tileDef[t] == null)
            {
                return false;
            }
            else
            {
                return true;
            }
        }