AtelierElieScripter.Dialogue.DialogueTextBlocks.LoadTextFileSmallerBlock C# (CSharp) Method

LoadTextFileSmallerBlock() protected method

protected LoadTextFileSmallerBlock ( StringReader blockStream, int textBlockNo ) : void
blockStream System.IO.StringReader
textBlockNo int
return void
        protected override void LoadTextFileSmallerBlock(StringReader blockStream, int? textBlockNo)
        {
            if (textBlockNo != null)
            {
                try
                {
                    textBlocks[(int)textBlockNo].LoadTextFileBlock(blockStream);
                }
                catch (KeyNotFoundException)
                {
                    //UNDONE: File Load Error catching
                }

            }
        }