/* * Copyright (C) 2011 halvors <halvors@skymiastudios.com> * Copyright (C) 2011 speeddemon92 <speeddemon92@gmail.com> * Copyright (C) 2011 adamonline45 <adamonline45@gmail.com> * * This file is part of Lupi. * * Lupi is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Lupi is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Lupi. If not, see <http://www.gnu.org/licenses/>. */ package org.halvors.lupi.event.wolf; import org.halvors.lupi.event.LupiEvent; import org.halvors.lupi.wolf.Wolf; public class LupiWolfEvent extends LupiEvent { private static final long serialVersionUID = -683947048429868380L; public Wolf wolf; public LupiWolfEvent(String name, Wolf wolf) { super(name); this.wolf = wolf; } public Wolf getWolf() { return wolf; } }