mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-07 13:57:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,52 @@
|
||||
using System;
|
||||
using System.CodeDom.Compiler;
|
||||
using System.ComponentModel;
|
||||
using System.Diagnostics;
|
||||
using System.Xml.Serialization;
|
||||
|
||||
namespace Roblox.Grid.Rcc.Server;
|
||||
|
||||
[Serializable]
|
||||
[GeneratedCode("wsdl", "4.8.3928.0")]
|
||||
[DebuggerStepThrough]
|
||||
[DesignerCategory("code")]
|
||||
[XmlType(Namespace = "http://roblox.com/")]
|
||||
public class Status : INotifyPropertyChanged
|
||||
{
|
||||
private string versionField;
|
||||
|
||||
private int environmentCountField;
|
||||
|
||||
public string version
|
||||
{
|
||||
get
|
||||
{
|
||||
return versionField;
|
||||
}
|
||||
set
|
||||
{
|
||||
versionField = value;
|
||||
RaisePropertyChanged("version");
|
||||
}
|
||||
}
|
||||
|
||||
public int environmentCount
|
||||
{
|
||||
get
|
||||
{
|
||||
return environmentCountField;
|
||||
}
|
||||
set
|
||||
{
|
||||
environmentCountField = value;
|
||||
RaisePropertyChanged("environmentCount");
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
protected void RaisePropertyChanged(string propertyName)
|
||||
{
|
||||
this.PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user