Package com.hobbitsadventure.model

Source Code of com.hobbitsadventure.model.NpcClass

package com.hobbitsadventure.model;

import java.awt.image.BufferedImage;

import com.hobbitsadventure.io.ImageFactory;

/**
* @author Willie Wheeler (willie.wheeler@gmail.com)
*/
public class NpcClass {
  private BufferedImage sprite;
 
  public NpcClass(String id) {
    ImageFactory imgFactory = new ImageFactory();
    this.sprite = imgFactory.getImage(id);
  }
 
  public BufferedImage getSprite() { return sprite; }
}
TOP

Related Classes of com.hobbitsadventure.model.NpcClass

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.