Package main

Source Code of main.Main

/*
* 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();
    }

}
TOP

Related Classes of main.Main

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.