1
0
Fork 0

In progress...

This commit is contained in:
Kolan Sh 2016-04-01 02:21:03 +03:00
parent 2821947698
commit bbc985bb48
1 changed files with 3 additions and 1 deletions

View File

@ -42,7 +42,9 @@ public class PluginObjectExample : PluginObject {
/**
* Compose the object.
*/
public override void compose () throws Error {
public override bool compose (Gee.HashMap<string, AnswerValue> answers) throws Error {
stdout.puts ("compose() called\n");
return true;
}
}