AIsOfCatan.MapScreen.InsertLogEvent C# (CSharp) Method

InsertLogEvent() private method

private InsertLogEvent ( string logText ) : void
logText string
return void
        private void InsertLogEvent(string logText)
        {
            GUIBufferTextBlock textB = new GUIBufferTextBlock(new Vector2(0,-25)) {Text = logText};
            gamelog.AddToList(textB);
        }