BiomePainter.Seed.Seed C# (CSharp) Method

Seed() public method

public Seed ( World world ) : System
world Minecraft.World
return System
        public Seed(World world)
        {
            this.world = world;
            InitializeComponent();

            lblOriginalSeed.Text = world.OriginalSeed.ToString();
            txtNewSeed.Text = world.Seed.ToString();
            this.CancelButton = btnCancel;
        }