fCraft.BlockFloat.BlockFloat C# (CSharp) Method

BlockFloat() public method

public BlockFloat ( World world, Vector3I position, Block Type ) : System
world World
position Vector3I
Type Block
return System
        public BlockFloat( World world, Vector3I position, Block Type )
            : base(world)
        {
            _pos = position;
            _nextPos = position.Z + 1;
            type = Type;
        }