Advertisement
Guest User

Untitled

a guest
Oct 23rd, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.46 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package ch.bbbaden.rio;
  7.  
  8. /**
  9.  *
  10.  * @author Manuel Saugy
  11.  */
  12. public class WuerfelMock implements Wuerfel {
  13.    
  14.     private int wurf;
  15.  
  16.     public WuerfelMock(int wurf) {
  17.         this.wurf = wurf;
  18.     }
  19.    
  20.     public int wuerfle() {
  21.         return 0;
  22.     }
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement