fCraft.BlockSink.BlockSink C# (CSharp) Method

BlockSink() public method

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