Advertisement
Guest User

Lumin.java

a guest
Sep 7th, 2011
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.38 KB | None | 0 0
  1. /*
  2.  *  This file is part of the Haven & Hearth game client.
  3.  *  Copyright (C) 2009 Fredrik Tolf <fredrik@dolda2000.com>, and
  4.  *                     Björn Johannessen <johannessen.bjorn@gmail.com>
  5.  *
  6.  *  Redistribution and/or modification of this file is subject to the
  7.  *  terms of the GNU Lesser General Public License, version 3, as
  8.  *  published by the Free Software Foundation.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  Other parts of this source tree adhere to other copying
  16.  *  rights. Please see the file `COPYING' in the root directory of the
  17.  *  source tree for details.
  18.  *
  19.  *  A copy the GNU Lesser General Public License is distributed along
  20.  *  with the source tree of which this file is a part in the file
  21.  *  `doc/LPGL-3'. If it is missing for any reason, please see the Free
  22.  *  Software Foundation's website at <http://www.fsf.org/>, or write
  23.  *  to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
  24.  *  Boston, MA 02111-1307 USA
  25.  */
  26.  
  27. package haven;
  28.  
  29. public class Lumin extends GAttrib {
  30.     Coord off;
  31.     int sz;
  32.    
  33.     public Lumin(Gob g, Coord off, int sz, int str) {
  34.         super(g);
  35.         this.off = off;
  36.         this.sz = sz;
  37.     }
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement