Skip to content

Commit

Permalink
it should be stored with the measurement because the eve online clien…
Browse files Browse the repository at this point in the history
…t renders numbers dependent on os number format settings.
  • Loading branch information
Arcitectus committed Jan 19, 2016
1 parent c651845 commit 7f75202
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 0 deletions.
Binary file modified lib.intermediate/Sanderling.Interface.dll
Binary file not shown.
Binary file modified lib.intermediate/Sanderling.Interface.pdb
Binary file not shown.
Binary file modified lib.intermediate/Sanderling.dll
Binary file not shown.
Binary file modified lib.intermediate/Sanderling.pdb
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ namespace Sanderling.Interface.MemoryStruct
/// </summary>
public interface IMemoryMeasurement
{
string UserDefaultLocaleName { get; }

string VersionString { get; }

Vektor2DInt ScreenSize { get; }
Expand Down Expand Up @@ -94,6 +96,8 @@ public interface IMemoryMeasurement

public class MemoryMeasurement : IMemoryMeasurement, ICloneable
{
public string UserDefaultLocaleName { set; get; }

public string VersionString { set; get; }

public Vektor2DInt ScreenSize { set; get; }
Expand Down
3 changes: 3 additions & 0 deletions src/Sanderling/Sanderling/Parse/MemoryMeasurement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Linq;
using MemoryStruct = Sanderling.Interface.MemoryStruct;
using Bib3.Geometrik;
using System;

namespace Sanderling.Parse
{
Expand All @@ -29,6 +30,8 @@ public class MemoryMeasurement : IMemoryMeasurement
{
MemoryStruct.IMemoryMeasurement Raw;

public string UserDefaultLocaleName => Raw?.UserDefaultLocaleName;

public IShipUiTarget[] Target { set; get; }

public IModuleButtonTooltip ModuleButtonTooltip { set; get; }
Expand Down

0 comments on commit 7f75202

Please sign in to comment.