+ Expose NetState members for what they are, to help with custom implementations that require access to extended features.
This commit is contained in:
parent
7af0579875
commit
3f5678f061
1 changed files with 3 additions and 3 deletions
|
|
@ -361,19 +361,19 @@ namespace Server.Network {
|
|||
}
|
||||
}
|
||||
|
||||
public IEnumerable<Gump> Gumps {
|
||||
public List<Gump> Gumps {
|
||||
get {
|
||||
return m_Gumps;
|
||||
}
|
||||
}
|
||||
|
||||
public IEnumerable<HuePicker> HuePickers {
|
||||
public List<HuePicker> HuePickers {
|
||||
get {
|
||||
return m_HuePickers;
|
||||
}
|
||||
}
|
||||
|
||||
public IEnumerable<IMenu> Menus {
|
||||
public List<IMenu> Menus {
|
||||
get {
|
||||
return m_Menus;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue