Exit Full View

Itchy / src / main / java / uk / co / nickthecoder / drunkinvaders / Shootable.java

/*******************************************************************************
 * Copyright (c) 2013 Nick Robinson All rights reserved. This program and the accompanying materials are made available under the terms of
 * the GNU Public License v3.0 which accompanies this distribution, and is available at http://www.gnu.org/licenses/gpl.html
 ******************************************************************************/
package uk.co.nickthecoder.drunkinvaders;

import uk.co.nickthecoder.itchy.Actor;

public interface Shootable
{

    public void shot( Actor bullet );

}