/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package main;
import custom.RobotKu;
import lib.Aplikasi;
import lib.Arah;
/**
*
* @author asasmoyo
*/
public class Main {
public static void main(String[] args) {
Aplikasi aplikasi = new Aplikasi("Robot robotan");
//put ur code here
RobotKu robot1 = new RobotKu(0, 0, Arah.KANAN);
aplikasi.tambahRobot(robot1);
//end of ur code
aplikasi.mulai();
}
}