<li><ahref="../../../../inf112/fiasko/roborally/objects/Deck.html"title="interface in inf112.fiasko.roborally.objects"><spanclass="typeNameLink">Prev Class</span></a></li>
<li><ahref="../../../../inf112/fiasko/roborally/objects/DrawableObject.html"title="class in inf112.fiasko.roborally.objects"><spanclass="typeNameLink">Next Class</span></a></li>
<thclass="colFirst"scope="col">Modifier and Type</th>
<thclass="colLast"scope="col">Method and Description</th>
</tr>
<trid="i0"class="altColor">
<tdclass="colFirst"><code>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Robot.html"title="class in inf112.fiasko.roborally.objects">Robot</a>></code></td>
<divclass="block">Gets the number of tiles in the y direction</div>
</td>
</tr>
<trid="i2"class="altColor">
<tdclass="colFirst"><code>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Particle.html"title="class in inf112.fiasko.roborally.objects">Particle</a>></code></td>
<divclass="block">Gets a list of all the particles to be drawn
Should return a list readable from top-left to top-right and so on.</div>
</td>
</tr>
<trid="i3"class="rowColor">
<tdclass="colFirst"><code>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Player.html"title="class in inf112.fiasko.roborally.objects">Player</a>></code></td>
<divclass="block">Gets a list of active players to receive information about player names</div>
</td>
</tr>
<trid="i4"class="altColor">
<tdclass="colFirst"><code>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Robot.html"title="class in inf112.fiasko.roborally.objects">Robot</a>></code></td>
<divclass="block">Gets a list of all robots to draw</div>
</td>
</tr>
<trid="i5"class="rowColor">
<tdclass="colFirst"><code>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Tile.html"title="class in inf112.fiasko.roborally.objects">Tile</a>></code></td>
<divclass="block">Gets a list of all the tiles to be drawn
Should return a list readable from top-left to top-right and so on.</div>
</td>
</tr>
<trid="i6"class="altColor">
<tdclass="colFirst"><code>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Wall.html"title="class in inf112.fiasko.roborally.objects">Wall</a>></code></td>
<divclass="block">Gets the number of tiles in the x direction</div>
</td>
</tr>
</table>
</li>
</ul>
</li>
</ul>
</div>
<divclass="details">
<ulclass="blockList">
<liclass="blockList">
<!-- ============ METHOD DETAIL ========== -->
<ulclass="blockList">
<liclass="blockList"><aname="method.detail">
<!---->
</a>
<h3>Method Detail</h3>
<aname="getWidth--">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>getWidth</h4>
<pre>int getWidth()</pre>
<divclass="block">Gets the number of tiles in the x direction</div>
<dl>
<dt><spanclass="returnLabel">Returns:</span></dt>
<dd>A positive integer</dd>
</dl>
</li>
</ul>
<aname="getHeight--">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>getHeight</h4>
<pre>int getHeight()</pre>
<divclass="block">Gets the number of tiles in the y direction</div>
<dl>
<dt><spanclass="returnLabel">Returns:</span></dt>
<dd>A positive integer</dd>
</dl>
</li>
</ul>
<aname="getTilesToDraw--">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>getTilesToDraw</h4>
<pre>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Tile.html"title="class in inf112.fiasko.roborally.objects">Tile</a>> getTilesToDraw()</pre>
<divclass="block">Gets a list of all the tiles to be drawn
<p>Should return a list readable from top-left to top-right and so on. In other words, the first getWidth() tiles
should be drawn on the top row from left to right.</p></div>
<dl>
<dt><spanclass="returnLabel">Returns:</span></dt>
<dd>A list of tiles</dd>
</dl>
</li>
</ul>
<aname="getWallsToDraw--">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>getWallsToDraw</h4>
<pre>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Wall.html"title="class in inf112.fiasko.roborally.objects">Wall</a>> getWallsToDraw()</pre>
<divclass="block">Gets a list of all the walls to be drawn
<p>Should return a list readable from top-left to top-right and so on. In other words, the first getWidth() walls
should be drawn on the top row from left to right.</p></div>
<dl>
<dt><spanclass="returnLabel">Returns:</span></dt>
<dd>A list of walls</dd>
</dl>
</li>
</ul>
<aname="getParticlesToDraw--">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>getParticlesToDraw</h4>
<pre>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Particle.html"title="class in inf112.fiasko.roborally.objects">Particle</a>> getParticlesToDraw()</pre>
<divclass="block">Gets a list of all the particles to be drawn
<p>Should return a list readable from top-left to top-right and so on. In other words, the first getWidth()
particles should be drawn on the top row from left to right.</p></div>
<dl>
<dt><spanclass="returnLabel">Returns:</span></dt>
<dd>A list of particles</dd>
</dl>
</li>
</ul>
<aname="getRobotsToDraw--">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>getRobotsToDraw</h4>
<pre>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Robot.html"title="class in inf112.fiasko.roborally.objects">Robot</a>> getRobotsToDraw()</pre>
<divclass="block">Gets a list of all robots to draw</div>
<dl>
<dt><spanclass="returnLabel">Returns:</span></dt>
<dd>A list of all robots to draw</dd>
</dl>
</li>
</ul>
<aname="getAllRobots--">
<!---->
</a>
<ulclass="blockList">
<liclass="blockList">
<h4>getAllRobots</h4>
<pre>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Robot.html"title="class in inf112.fiasko.roborally.objects">Robot</a>> getAllRobots()</pre>
<divclass="block">Gets a list of all robots still participating</div>
<dl>
<dt><spanclass="returnLabel">Returns:</span></dt>
<dd>A list of all robots</dd>
</dl>
</li>
</ul>
<aname="getPlayers--">
<!---->
</a>
<ulclass="blockListLast">
<liclass="blockList">
<h4>getPlayers</h4>
<pre>java.util.List<<ahref="../../../../inf112/fiasko/roborally/objects/Player.html"title="class in inf112.fiasko.roborally.objects">Player</a>> getPlayers()</pre>
<divclass="block">Gets a list of active players to receive information about player names</div>
<li><ahref="../../../../inf112/fiasko/roborally/objects/Deck.html"title="interface in inf112.fiasko.roborally.objects"><spanclass="typeNameLink">Prev Class</span></a></li>
<li><ahref="../../../../inf112/fiasko/roborally/objects/DrawableObject.html"title="class in inf112.fiasko.roborally.objects"><spanclass="typeNameLink">Next Class</span></a></li>