Advertisement
Guest User

Untitled

a guest
Jun 2nd, 2015
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.16 KB | None | 0 0
  1. package com.orhantozan.game;
  2.  
  3. public class Dew {
  4.    
  5.     public float x;
  6.     public float y;
  7.    
  8.     public Dew(float x, float y) {
  9.         this.x = x;
  10.         this.y = y;
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement