Skip to content
Campaign.java 780 B
Newer Older
package com.eyecreate.miceandmystics.miceandmystics.model;

import io.realm.RealmList;
import io.realm.RealmObject;

public class Campaign extends RealmObject {
    private RealmList<Character> currentCharacters;
Kevin Whitaker's avatar
Kevin Whitaker committed
    private RealmList<Achievement> partyStoryAchievements;

    public RealmList<Character> getCurrentCharacters() {
        return currentCharacters;
    }

    public void setCurrentCharacters(RealmList<Character> currentCharacters) {
        this.currentCharacters = currentCharacters;
    }

Kevin Whitaker's avatar
Kevin Whitaker committed
    public RealmList<Achievement> getPartyStoryAchievements() {
        return partyStoryAchievements;
Kevin Whitaker's avatar
Kevin Whitaker committed
    public void setPartyStoryAchievements(RealmList<Achievement> partyStoryAchievements) {
        this.partyStoryAchievements = partyStoryAchievements;