Advertisement
Lusien_Lashans

Laba 2 Labirint

Apr 30th, 2018
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.27 KB | None | 0 0
  1. package com.company;
  2.  
  3. import java.util.List;
  4. import java.util.Stack;
  5.  
  6. public class Labirint {
  7.     private Point[][] matrix;
  8.     public Labirint(Point[][] array){
  9.         matrix = array;
  10.     }
  11.  
  12.     public Point[][] getMatrix(){
  13.         return matrix;
  14.     }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement