Skip to content

Commit

Permalink
add proper scoping to server interface functions
Browse files Browse the repository at this point in the history
  • Loading branch information
mmaulwurff authored and coelckers committed May 22, 2021
1 parent c7658b6 commit 7d01d04
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion wadsrc/static/zscript/service.zs
Expand Up @@ -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 "";
}
Expand Down

0 comments on commit 7d01d04

Please sign in to comment.