Description:
Rename TileMap to CellMap.
Commit status:
[Not Reviewed]
References:
Comments:
0 Commit comments 0 Inline Comments
Unresolved TODOs:
There are no unresolved TODOs
Add another comment

r66:742f9df02449 -

1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
1 NO CONTENT: modified file, binary diff hidden
@@ -8,7 +8,12
8 8 "restore": {
9 9 "projectUniqueName": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj",
10 10 "projectName": "FNA",
11 "projectPath": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj"
11 "projectPath": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj",
12 "frameworks": {
13 "net48": {
14 "projectReferences": {}
15 }
16 }
12 17 },
13 18 "frameworks": {
14 19 "net48": {}
@@ -34,7 +39,6
34 39 },
35 40 "frameworks": {
36 41 "net45": {
37 "targetAlias": "net45",
38 42 "projectReferences": {
39 43 "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj": {
40 44 "projectPath": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj"
@@ -50,8 +54,7
50 54 },
51 55 "frameworks": {
52 56 "net45": {
53 "targetAlias": "net45",
54 "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.102/RuntimeIdentifierGraph.json"
57 "runtimeIdentifierGraphPath": "/Library/Frameworks/Mono.framework/Versions/6.12.0/lib/mono/msbuild/Current/bin/RuntimeIdentifierGraph.json"
55 58 }
56 59 }
57 60 }
@@ -7,11 +7,8
7 7 <NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/alys/.nuget/packages/</NuGetPackageRoot>
8 8 <NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/alys/.nuget/packages/</NuGetPackageFolders>
9 9 <NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
10 <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.8.0</NuGetToolVersion>
10 <NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">5.6.0</NuGetToolVersion>
11 11 </PropertyGroup>
12 <ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
13 <SourceRoot Include="$([MSBuild]::EnsureTrailingSlash($(NuGetPackageFolders)))" />
14 </ItemGroup>
15 12 <PropertyGroup>
16 13 <MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects>
17 14 </PropertyGroup>
@@ -48,7 +48,6
48 48 },
49 49 "frameworks": {
50 50 "net45": {
51 "targetAlias": "net45",
52 51 "projectReferences": {
53 52 "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj": {
54 53 "projectPath": "/Users/alys/repos/isometric-park-fna/FNA/FNA.csproj"
@@ -64,8 +63,7
64 63 },
65 64 "frameworks": {
66 65 "net45": {
67 "targetAlias": "net45",
68 "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/5.0.102/RuntimeIdentifierGraph.json"
66 "runtimeIdentifierGraphPath": "/Library/Frameworks/Mono.framework/Versions/6.12.0/lib/mono/msbuild/Current/bin/RuntimeIdentifierGraph.json"
69 67 }
70 68 }
71 69 }
@@ -1,6 +1,6
1 1 {
2 2 "version": 2,
3 "dgSpecHash": "QbljAP9YfnlfGt9DK+paIbf2KN67CHfFFP459FIA09f6Vs2u4/bm6jOZkhaagMtqNxlEucQ1En4ss24qjT71BA==",
3 "dgSpecHash": "kUPsWi+W/I8KOuiF0fQ9nWh1vVsW3b0wAQVjldBK6JNRF3usvNENwsXcLXddNG6Wh/129HHhkfaanQmLUK7wcA==",
4 4 "success": true,
5 5 "projectFilePath": "/Users/alys/repos/isometric-park-fna/SpriteFontPlus/src/SpriteFontPlus.FNA.csproj",
6 6 "expectedPackageFiles": [],
@@ -12,7 +12,7
12 12 using SpriteFontPlus;
13 13 using isometricparkfna;
14 14 using System.Diagnostics;
15 using static isometricparkfna.TileMap;
15 using static isometricparkfna.CellMap;
16 16 using isometricparkfna.Utils;
17 17
18 18
@@ -1,5 +1,5
1 1 using System;
2 using static isometricparkfna.TileMap;
2 using static isometricparkfna.CellMap;
3 3
4 4 namespace isometricparkfna
5 5 {
@@ -59,7 +59,7
59 59 }
60 60 }
61 61
62 public TileMap map;
62 public CellMap map;
63 63
64 64 public int ticksPerAdvance;
65 65 private float lastAdvance;
@@ -73,7 +73,7
73 73
74 74 this.DateTime = new DateTime(START_YEAR, START_MONTH, START_DAY);
75 75
76 this.map = new TileMap(width, height);
76 this.map = new CellMap(width, height);
77 77 this.money = 1000;
78 78 this.millisecondsPerAdvance = millisecondsPerAdvance;
79 79
@@ -36,7 +36,7
36 36 <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
37 37 </Compile>
38 38 <Compile Include="Tile.cs" />
39 <Compile Include="TileMap.cs" />
39 <Compile Include="CellMap.cs" />
40 40 <Compile Include="Line.cs" />
41 41 <Compile Include="Camera.cs" />
42 42 <Compile Include="DrawVertDeclaration.cs" />
You need to be logged in to leave comments. Login now