Skip to content

Commit

Permalink
Regenerated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Chris3606 committed Jun 7, 2019
1 parent 74b27f8 commit 1283e76
Show file tree
Hide file tree
Showing 14 changed files with 139 additions and 222 deletions.
1 change: 1 addition & 0 deletions docs/api/GoRogue.Effect-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ <h6><strong>Assembly</strong>: GoRogue.dll</h6>
<h5 id="GoRogue_Effect_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public abstract class Effect&lt;TriggerArgs&gt;

where TriggerArgs : EffectArgs</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
Expand Down
1 change: 1 addition & 0 deletions docs/api/GoRogue.EffectTrigger-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ <h6><strong>Assembly</strong>: GoRogue.dll</h6>
<h5 id="GoRogue_EffectTrigger_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public class EffectTrigger&lt;TriggerArgs&gt;

where TriggerArgs : EffectArgs</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
Expand Down
30 changes: 15 additions & 15 deletions docs/api/GoRogue.GameFramework.GameObject.html

Large diffs are not rendered by default.

88 changes: 67 additions & 21 deletions docs/api/GoRogue.GameFramework.Map.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/api/GoRogue.MapViews.IMapView-1.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ <h6><strong>Namespace</strong>: <a class="xref" href="GoRogue.MapViews.html">GoR
<h6><strong>Assembly</strong>: GoRogue.dll</h6>
<h5 id="GoRogue_MapViews_IMapView_1_syntax">Syntax</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">public interface IMapView&lt;T&gt;</code></pre>
<pre><code class="lang-csharp hljs">public interface IMapView&lt;out T&gt;</code></pre>
</div>
<h5 class="typeParameters">Type Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand Down
16 changes: 11 additions & 5 deletions docs/api/GoRogue.MapViews.LambdaTranslationMap-2.html
Original file line number Diff line number Diff line change
Expand Up @@ -271,20 +271,20 @@ <h3 id="methods">Methods
</h3>
<span class="small pull-right mobile-hide">
<span class="divider">|</span>
<a href="https://github.com/Chris3606/GoRogue/new/master/apiSpec/new?filename=GoRogue_MapViews_LambdaTranslationMap_2_TranslateGet__0_.md&amp;value=---%0Auid%3A%20GoRogue.MapViews.LambdaTranslationMap%602.TranslateGet(%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
<a href="https://github.com/Chris3606/GoRogue/new/master/apiSpec/new?filename=GoRogue_MapViews_LambdaTranslationMap_2_TranslateGet_GoRogue_Coord__0_.md&amp;value=---%0Auid%3A%20GoRogue.MapViews.LambdaTranslationMap%602.TranslateGet(GoRogue.Coord%2C%600)%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A">Improve this Doc</a>
</span>
<span class="small pull-right mobile-hide">
<a href="https://github.com/Chris3606/GoRogue/blob/master/GoRogue/MapViews/LambdaTranslationMap.cs/#L60">View Source</a>
<a href="https://github.com/Chris3606/GoRogue/blob/master/GoRogue/MapViews/LambdaTranslationMap.cs/#L61">View Source</a>
</span>
<a id="GoRogue_MapViews_LambdaTranslationMap_2_TranslateGet_" data-uid="GoRogue.MapViews.LambdaTranslationMap`2.TranslateGet*"></a>
<h4 id="GoRogue_MapViews_LambdaTranslationMap_2_TranslateGet__0_" data-uid="GoRogue.MapViews.LambdaTranslationMap`2.TranslateGet(`0)">TranslateGet(T1)</h4>
<h4 id="GoRogue_MapViews_LambdaTranslationMap_2_TranslateGet_GoRogue_Coord__0_" data-uid="GoRogue.MapViews.LambdaTranslationMap`2.TranslateGet(GoRogue.Coord,`0)">TranslateGet(Coord, T1)</h4>
<div class="markdown level1 summary"><p>Translates your map data into the view type by calling the getter function specified in the
class constructor.</p>
</div>
<div class="markdown level1 conceptual"></div>
<h5 class="decalaration">Declaration</h5>
<div class="codewrapper">
<pre><code class="lang-csharp hljs">protected override T2 TranslateGet(T1 value)</code></pre>
<pre><code class="lang-csharp hljs">protected override T2 TranslateGet(Coord position, T1 value)</code></pre>
</div>
<h5 class="parameters">Parameters</h5>
<table class="table table-bordered table-striped table-condensed">
Expand All @@ -296,6 +296,12 @@ <h5 class="parameters">Parameters</h5>
</tr>
</thead>
<tbody>
<tr>
<td><a class="xref" href="GoRogue.Coord.html">Coord</a></td>
<td><span class="parametername">position</span></td>
<td><p>Position corresponding to given data value of your map.</p>
</td>
</tr>
<tr>
<td><span class="xref">T1</span></td>
<td><span class="parametername">value</span></td>
Expand All @@ -321,7 +327,7 @@ <h5 class="returns">Returns</h5>
</tbody>
</table>
<h5 class="overrides">Overrides</h5>
<div><span class="xref">GoRogue.MapViews.TranslationMap&lt;T1, T2&gt;.TranslateGet(T1)</span></div>
<div><span class="xref">GoRogue.MapViews.TranslationMap&lt;T1, T2&gt;.TranslateGet(GoRogue.Coord, T1)</span></div>
<h3 id="implements">Implements</h3>
<div>
<a class="xref" href="GoRogue.MapViews.IMapView-1.html">IMapView&lt;T&gt;</a>
Expand Down
153 changes: 0 additions & 153 deletions docs/articles/grid_components/2d-point.html

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file removed docs/images/getting_neighbors/Cardinals.PNG
Binary file not shown.
Binary file removed docs/images/getting_neighbors/Diagonals.PNG
Binary file not shown.
Binary file removed docs/images/getting_neighbors/Eight_Way.PNG
Binary file not shown.
38 changes: 19 additions & 19 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -348,7 +348,7 @@
"hash": "ypSWRUfNlIWhw+J54LWNDg=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand Down Expand Up @@ -405,7 +405,7 @@
"output": {
".html": {
"relative_path": "api/GoRogue.Effect-1.html",
"hash": "e+L+zd3co/Rx7ZGoupnIQg=="
"hash": "/YyZ+VR+VIY1eIWTqDF19Q=="
}
},
"is_incremental": false,
Expand All @@ -429,7 +429,7 @@
"output": {
".html": {
"relative_path": "api/GoRogue.EffectTrigger-1.html",
"hash": "U9NaEAwV5+rXDFWbbaiFPw=="
"hash": "h4RHQU5TCysaA1aYbNRrvA=="
}
},
"is_incremental": false,
Expand Down Expand Up @@ -477,7 +477,7 @@
"output": {
".html": {
"relative_path": "api/GoRogue.GameFramework.GameObject.html",
"hash": "91mMmEu4x1ClPhaFXe3ieQ=="
"hash": "emUf4OwqA74AEcerqSNflQ=="
}
},
"is_incremental": false,
Expand All @@ -501,7 +501,7 @@
"output": {
".html": {
"relative_path": "api/GoRogue.GameFramework.Map.html",
"hash": "mJvFwz3EZci6S0gTxmVWyg=="
"hash": "2BNPYsLIr45Qyl9cjkTEKg=="
}
},
"is_incremental": false,
Expand Down Expand Up @@ -1029,7 +1029,7 @@
"output": {
".html": {
"relative_path": "api/GoRogue.MapViews.IMapView-1.html",
"hash": "pwxK+PNXCFslW+fx58bMgg=="
"hash": "ekECY/xWgwFkRwR1b0tXyg=="
}
},
"is_incremental": false,
Expand Down Expand Up @@ -1101,7 +1101,7 @@
"output": {
".html": {
"relative_path": "api/GoRogue.MapViews.LambdaTranslationMap-2.html",
"hash": "HHx8sMfu22rdVXLEd5TpxA=="
"hash": "IKDEiLy6f2UsxBUk1xlz7w=="
}
},
"is_incremental": false,
Expand Down Expand Up @@ -1596,7 +1596,7 @@
"hash": "4W5EW3IaNlxrILkIwH1Oyg=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1620,7 +1620,7 @@
"hash": "EzUbzA91khKX9v1Xuy5XRw=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1647,7 +1647,7 @@
"hash": "+1TJvC4ag1/W50Hjc/Mv7A=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1659,7 +1659,7 @@
"hash": "HPfZW3nvdFUh1XhDnc4kBQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1671,7 +1671,7 @@
"hash": "LukEsG1XacB7PakS8WtU0g=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1683,7 +1683,7 @@
"hash": "r8I4VOGr/Bm+AP3SyTgKQw=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1695,7 +1695,7 @@
"hash": "OxXvd0KHfGRljIhCNUl8TQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1707,7 +1707,7 @@
"hash": "Mj+XjwXAOVdlkWLwgFDzyg=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand All @@ -1719,7 +1719,7 @@
"hash": "ZlfFbjvRBBTRBmjI3zvosw=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand Down Expand Up @@ -2183,7 +2183,7 @@
"hash": "nGBBMfwd+jjphIyIAdBIhQ=="
}
},
"is_incremental": false,
"is_incremental": true,
"version": ""
},
{
Expand Down Expand Up @@ -2219,13 +2219,13 @@
"can_incremental": true,
"incrementalPhase": "build",
"total_file_count": 11,
"skipped_file_count": 6
"skipped_file_count": 11
},
"ManagedReferenceDocumentProcessor": {
"can_incremental": true,
"incrementalPhase": "build",
"total_file_count": 132,
"skipped_file_count": 67
"skipped_file_count": 68
},
"ResourceDocumentProcessor": {
"can_incremental": false,
Expand Down
Loading

0 comments on commit 1283e76

Please sign in to comment.