Advertisement
Guest User

Untitled

a guest
May 28th, 2015
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. package Recent;
  2.  
  3. public class Block {
  4.  
  5. int BlockNumber;
  6. String BlockName;
  7. MainApp.BlockTypes BlockType;
  8.  
  9. public Block(int blockNumber, String blockName, MainApp.BlockTypes blockType) {
  10. BlockNumber = blockNumber;
  11. BlockName = blockName;
  12. BlockType = blockType;
  13. }
  14.  
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement