Advertisement
Guest User

Untitled

a guest
May 25th, 2016
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.50 KB | None | 0 0
  1. String name;
  2.         String[] spoils;
  3.         Techniques technique;
  4.         Locations location;        
  5.         Area area;
  6.         Tile[] corners;
  7.        
  8.         Animals(String name,String[] spoils,Techniques technique,Locations location,Tile[] corners)
  9.         {
  10.             this.name = name;
  11.             this.spoils = spoils;
  12.             this.technique = technique;
  13.             this.location = location;
  14.             this.corners = corners;
  15.             this.area = new Area(corners);
  16.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement