mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 20:32:34 +00:00
15b2adfe30
Fixed, Texture Browser Form: well, I broke "Tab" key functionality again (in previous commit)... Maintenance: changed curly braces style to match DB2 one (hopefully not breaking anything in the process...). Maintenance: changed private method names casing to match DB2 one.
22 lines
618 B
C#
22 lines
618 B
C#
using System.Windows.Forms;
|
|
|
|
namespace CodeImp.DoomBuilder.Controls
|
|
{
|
|
public partial class StatisticsControl : UserControl
|
|
{
|
|
public StatisticsControl()
|
|
{
|
|
InitializeComponent();
|
|
this.Visible = false;
|
|
}
|
|
|
|
public void UpdateStatistics()
|
|
{
|
|
verticescount.Text = General.Map.Map.Vertices.Count.ToString();
|
|
linedefscount.Text = General.Map.Map.Linedefs.Count.ToString();
|
|
sidedefscount.Text = General.Map.Map.Sidedefs.Count.ToString();
|
|
sectorscount.Text = General.Map.Map.Sectors.Count.ToString();
|
|
thingscount.Text = General.Map.Map.Things.Count.ToString();
|
|
}
|
|
}
|
|
}
|