fCraft.FontHandler.FontHandler C# (CSharp) Method

FontHandler() public method

public FontHandler ( Block textColor, Vector3I Marks, Player p, Direction dir ) : System
textColor Block
Marks Vector3I
p Player
dir Direction
return System
        public FontHandler( Block textColor, Vector3I[] Marks, Player p, Direction dir )
        {
            direction = dir;
            blockCount = 0;
            player = p;
            PixelData.X = Marks[0].X;
            PixelData.Y = Marks[0].Y;
            PixelData.Z = Marks[0].Z;
            PixelData.BlockColor = textColor;
            undoState = player.DrawBegin( null );
        }