/**
* JAVA DRAWING APP
* Author : Johnivan Aldo S
* : Yeremia Dhyan L
* Version : 7 Januari 2021
*
* Kelas tool untuk membedakan type dari setiap tool yang ada berdasarkan pemilihan user
*/
public class Tool
{
public int toolType;
public Tool (int type)
{
toolType = type;
}
}