MCPcopy Create free account
hub / github.com/atas76/openengine / Nation

Class Nation

src/main/java/org/openengine/prototype/domain/Nation.java:3–19  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package org.openengine.prototype.domain;
2
3public class Nation implements Team {
4
5 private String name;
6 private Squad squad = new Squad();
7
8 public Nation(String name) {
9 this.name = name;
10 }
11
12 public String getName() {
13 return name;
14 }
15
16 public Squad getSquad() {
17 return this.squad;
18 }
19}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected