-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
some progress on the config and structure layers
- Loading branch information
1 parent
3d10f2e
commit 0a0a5d5
Showing
12 changed files
with
128 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using JetBrains.Annotations; | ||
using livemap.layer.marker.options.type; | ||
using Point = livemap.data.Point; | ||
|
||
namespace livemap.configuration; | ||
|
||
[PublicAPI] | ||
public class Traders { | ||
public bool Enabled { get; set; } = false; | ||
|
||
public int UpdateInterval { get; set; } = 30; | ||
|
||
public bool DefaultShowLayer { get; set; } = true; | ||
|
||
public IconOptions IconOptions { get; set; } = new() { | ||
Title = "", | ||
Alt = "", | ||
IconUrl = "#svg-trader", | ||
IconSize = new Point(16, 16) | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using JetBrains.Annotations; | ||
using livemap.layer.marker.options.type; | ||
using Point = livemap.data.Point; | ||
|
||
namespace livemap.configuration; | ||
|
||
[PublicAPI] | ||
public class Translocators { | ||
public bool Enabled { get; set; } = false; | ||
|
||
public int UpdateInterval { get; set; } = 30; | ||
|
||
public bool DefaultShowLayer { get; set; } = true; | ||
|
||
public IconOptions IconOptions { get; set; } = new() { | ||
Title = "", | ||
Alt = "", | ||
IconUrl = "#svg-spiral", | ||
IconSize = new Point(16, 16) | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters