mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-07-13 17:51:57 +00:00
Add more Events
This commit is contained in:
parent
e010c661d1
commit
2f2a9a8dfa
3 changed files with 31 additions and 0 deletions
|
|
@ -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;
|
||||||
|
}
|
||||||
|
|
@ -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<>();
|
||||||
|
}
|
||||||
|
|
@ -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;
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue