mirror of
https://github.com/ZDoom/gzdoom.git
synced 2025-03-21 18:31:10 +00:00
add proper scoping to server interface functions
This commit is contained in:
parent
c7658b691c
commit
7d01d0450f
1 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,12 @@
|
|||
*/
|
||||
class Service abstract
|
||||
{
|
||||
virtual String Get(String request)
|
||||
virtual play String Get(String request)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
||||
virtual ui String UiGet(String request)
|
||||
{
|
||||
return "";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue