DavidNorgren

Untitled

Apr 16th, 2014
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. package com.example.testapp.app;
  2.  
  3. public class Unit {
  4.     Unit(String name, float ratio) {
  5.         Name = name;
  6.         Ratio = ratio;
  7.     }
  8.     public String toString() {return Name;}
  9.     public float getRatio() {return Ratio;}
  10.  
  11.     private String Name;
  12.     private float Ratio;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment