001 package com.croftsoft.apps.mars.model;
002
003 /*********************************************************************
004 * A bullet.
005 *
006 * @version
007 * 2003-04-14
008 * @since
009 * 2003-04-14
010 * @author
011 * <a href="http://www.CroftSoft.com/">David Wallace Croft</a>
012 *********************************************************************/
013
014 public interface Bullet
015 extends Model, BulletAccessor
016 //////////////////////////////////////////////////////////////////////
017 //////////////////////////////////////////////////////////////////////
018 {
019
020 public void fire (
021 double originX,
022 double originY,
023 double heading );
024
025 //////////////////////////////////////////////////////////////////////
026 //////////////////////////////////////////////////////////////////////
027 }