BodyTetrisWrapper.Program.PlayerStatus C# (CSharp) Method

PlayerStatus() public static method

public static PlayerStatus ( float p1z, float p2z, IntPtr players ) : void
p1z float
p2z float
players System.IntPtr
return void
        public static void PlayerStatus(float p1z, float p2z, IntPtr players)
        {
            int[] playerShapes = new int[4 * 6];
            Marshal.Copy(players, playerShapes, 0, 4 * 6);

            logger.AddLogWithTime("Players " + p1z + " " + p2z + " ", playerShapes);
        }
    }