Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/meowers/cide/data/MapCell.java


1   /*
2    * MapCell.java
3    *
4    * Created on January 18, 2002, 12:55 AM
5    */
6   
7   package org.meowers.cide.data;
8   
9   /**
10   *
11   * @author  adam
12   * @version 
13   */
14  public class MapCell {
15  
16      private Tile tile;
17      
18      /** Creates new MapCell */
19      public MapCell() {
20      }
21  
22      public void setTile(Tile t) {
23          tile = t;
24      }
25      
26      public Tile getTile() {
27          return (tile);
28      }
29      
30  }