Tests1.java 443 B

12345678910111213141516171819202122
  1. package tests;
  2. /**
  3. * First round of tests
  4. *
  5. */
  6. public class Tests1 {
  7. /**
  8. * Create some CPS object and Gadgets
  9. */
  10. public static void main(String[] args) {
  11. // HolonObject b1 = new HolonObject();
  12. // HolonObject b2 = new HolonObject();
  13. // HolonSwitch s1 = new HolonSwitch();
  14. // HolonTransformer t1 = new HolonTransformer();
  15. // b1.setPos(20, 30);
  16. // Position p = b1.getPos();
  17. // System.out.println(p.x + "," + p.y);
  18. }
  19. }