001    package net.minecraft.dispenser;
002    
003    public class PositionImpl implements IPosition
004    {
005        protected final double field_82630_a;
006        protected final double field_82628_b;
007        protected final double field_82629_c;
008    
009        public PositionImpl(double par1, double par3, double par5)
010        {
011            this.field_82630_a = par1;
012            this.field_82628_b = par3;
013            this.field_82629_c = par5;
014        }
015    
016        public double getX()
017        {
018            return this.field_82630_a;
019        }
020    
021        public double getY()
022        {
023            return this.field_82628_b;
024        }
025    
026        public double getZ()
027        {
028            return this.field_82629_c;
029        }
030    }