IGameObjectEventCastable.java :  » Game » tda366-forceofattraction » com » chalmers » foa » gamemodel » gameobjects » Android Open Source

Android Open Source » Game » tda366 forceofattraction 
tda366 forceofattraction » com » chalmers » foa » gamemodel » gameobjects » IGameObjectEventCastable.java
package com.chalmers.foa.gamemodel.gameobjects;

import java.beans.PropertyChangeListener;

import com.chalmers.foa.gamemodel.events.IEvent;

public interface IGameObjectEventCastable {
  
  public void addPropertyChangeListener(PropertyChangeListener pcs);
  
  public void bindEvent(IEvent _event);
  
  public boolean hasEvent();
  
  public void triggerEvent();
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.