Added getPayload() method to TaskyEvent class

This commit is contained in:
Tristan B. Velloza Kildaire 2022-05-24 15:08:37 +02:00
parent 4380019665
commit bfbf02efdb
1 changed files with 5 additions and 0 deletions

View File

@ -65,6 +65,11 @@ public final class Engine : Thread
super(descID);
this.payload = payload;
}
public byte[] getPayload()
{
return payload;
}
}
/**