Advertisement
Guest User

Untitled

a guest
Apr 4th, 2020
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.24 KB | None | 0 0
  1. class Point {
  2.     String id
  3.     double x,y;
  4.  
  5.     //TODO add new variable
  6.  
  7.     //TODO constructor
  8.  
  9.     //TODO setters and getters
  10.  
  11.     public void move (char xDirection, char yDirection) {
  12.         //TODO
  13.     }
  14.  
  15.     public void draw () {
  16.         //TODO
  17.     }
  18.  
  19.  
  20.  
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement