Example #1
0
 public static void Blit(string source, char[,] dest, Vector2I pos, bool copyTransparentChars)
 {
     Blit(StrToCharArray(source), dest, pos, copyTransparentChars);
 }
Example #2
0
        public static void WriteStringToScreenBuffer(IntPtr screenBufferToWriteOn, string stringToWrite, Vector2I posOfScreenBufferToStartTheWritingAt)
        {
            UInt32 numCharsWritten;

            LowLevel.WriteConsoleOutputCharacter(screenBufferToWriteOn, stringToWrite, (uint)stringToWrite.Length, new  LowLevel.COORD((short)posOfScreenBufferToStartTheWritingAt.X, (short)posOfScreenBufferToStartTheWritingAt.Y), out numCharsWritten);
        }