Add more Events

This commit is contained in:
Negue 2015-07-11 20:43:49 +02:00
parent e010c661d1
commit 2f2a9a8dfa
3 changed files with 31 additions and 0 deletions

View file

@ -0,0 +1,10 @@
package com.habitrpg.android.habitica.events;
import com.magicmicky.habitrpgwrapper.lib.models.tasks.Reward;
/**
* Created by Negue on 11.07.2015.
*/
public class BuyRewardTappedEvent {
public Reward Reward;
}

View file

@ -0,0 +1,11 @@
package com.habitrpg.android.habitica.events;
import java.util.ArrayList;
import java.util.List;
/**
* Created by Negue on 11.07.2015.
*/
public class FilterByTagsEvent {
public List<String> TagIdList = new ArrayList<>();
}

View file

@ -0,0 +1,10 @@
package com.habitrpg.android.habitica.events;
import com.magicmicky.habitrpgwrapper.lib.models.tasks.ToDo;
/**
* Created by Negue on 11.07.2015.
*/
public class TodoCheckedEvent {
public ToDo ToDo;
}