sdk executable service bodies

This commit is contained in:
bQUARKz 2026-04-03 09:15:28 +01:00
parent 0d01c0a522
commit 18b1967e6d
Signed by: bquarkz
SSH Key Fingerprint: SHA256:Z7dgqoglWwoK6j6u4QC87OveEq74WOhFN+gitsxtkf8
2 changed files with 2 additions and 4 deletions

View File

@ -80,13 +80,11 @@ declare service Input
{
fn pad() -> InputPad
{
let pad = LowInput.pad();
return pad;
return LowInput.pad();
}
fn touch() -> InputTouch
{
let touch = LowInput.touch();
return touch;
return LowInput.touch();
}
}