Skip to content
This repository was archived by the owner on Jul 9, 2024. It is now read-only.

Commit 235019c

Browse files
committed
removed unused code
1 parent 0dc5c3c commit 235019c

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
*.jpg
1313
*.png
1414
*.svg
15+
ACT_Plugin_Sample 2022
1516

1617
# User-specific files (MonoDevelop/Xamarin Studio)
1718
*.userprefs

ufht-UI/ufht-UI.csproj

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
<ApplicationManifest>app.manifest</ApplicationManifest>
1010
<Platforms>AnyCPU;x64</Platforms>
1111
<ApplicationIcon>SS.ico</ApplicationIcon>
12+
<StartupObject />
13+
</PropertyGroup>
14+
15+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
16+
<WarningLevel>3</WarningLevel>
1217
</PropertyGroup>
1318

1419
<ItemGroup>

untitled-ffxiv-hunt-tracker/Entities/ICoordinates.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ public Coords(double x, double y)
1616
Y = y;
1717
}
1818

19-
public double X { get; set; }
20-
public double Y { get; set; }
19+
public double X; /*{ get; set; }*/
20+
public double Y; /*{ get; set; }*/
2121

2222
public override string ToString() => $"({Math.Floor(Math.Floor(X * 100) / 10) / 10}, {Math.Floor(Math.Floor(Y * 100) / 10) / 10})";
2323
}

0 commit comments

Comments
 (0)