all repos — WarBot2020 @ 076cea8a20f45a696785f62d770237e52b2bf691

Bootleg version of "WorldWarBot 2020" done in Java and without a map.

Delete Territorio.java
Bi-Rabittoh andronacomarco@gmail.com
Wed, 03 Apr 2019 11:11:22 +0200
commit

076cea8a20f45a696785f62d770237e52b2bf691

parent

3b0a0aac1376ff85dacdae7335537f61b8fb44bd

1 files changed, 0 insertions(+), 40 deletions(-)

jump to
D Territorio.java

@@ -1,40 +0,0 @@

-/* - * 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 siciliaguerrabot2020; - -/** - * - * @author Bi-Rabittoh - */ -public class Territorio { - private final String nome; - private Comune proprietario; - private final Centroide pos; - - public Territorio(String nome, Comune proprietario, Centroide pos) { - this.nome = nome; - this.proprietario = proprietario; - this.pos = pos; - } - - public Comune getProprietario() { - return proprietario; - } - - public void setProprietario(Comune proprietario) { - this.proprietario = proprietario; - } - - public Centroide getPos() { - return pos; - } - - public String getNome() { - return nome; - } - - -}