public static System.Drawing.Color GetRrgbaColor(GeolayoutCommand command)
            {
                command.Position = 0x2;
                byte b1 = command.ReadByte();
                byte b2 = command.ReadByte();

                command.Position = 0;
                return(N64Graphics.N64Graphics.RGBA16Color(b1, b2));
            }
            public static byte GetCameraPreset(ref GeolayoutCommand command)
            {
                command.Position = 0x3;
                byte value = command.ReadByte();

                command.Position = 0;
                return(value);
            }
            public static byte GetDrawingLayer(ref GeolayoutCommand command)
            {
                command.Position = 0x1;
                byte value = command.ReadByte();

                command.Position = 0;
                return(value);
            }