all repos — WarBot2020 @ 4b97e9f38827752493449c5309baf779f507f84b

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

Delete Territorio.java
Bi-Rabittoh andronacomarco@gmail.com
Thu, 04 Apr 2019 12:56:24 +0200
commit

4b97e9f38827752493449c5309baf779f507f84b

parent

3fd7ae45d0955f37245e27769193082192c9bfac

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

jump to
D siciliaguerrabot2020/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; - } - - -}