Advertisement
cwchen

[Go] IPoint interface.

Oct 7th, 2017
728
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.08 KB | None | 0 0
  1. type IPoint interface {
  2.     X() float64
  3.     Y() float64
  4.     SetX(float64)
  5.     SetY(float64)
  6. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement