C#;
public int Test
{
get;
set;
}
Java
private int mTest;
public int getTest() {
return mTest;
}
public void setTest(int test) {
return mTest = test;
}
I'd say Mitch is right ;)
The images show what's been done.
However those are hardcoded..
Not hardcoded would be something like..
Message.Initialize(Outgoing.RoomStatuses);
Message.AppendInt32(1);
Message.AppendInt32(mSession.getHabbo().Id);
Message.AppendInt32(X);
Message.AppendInt32(Y)...