/WorldView/Structures/SymbolLoc.cs
# · C# · 39 lines · 33 code · 4 blank · 2 comment · 0 complexity · 361ffc6246a54d2bf607375976502b1d MD5 · raw file
- using System;
- using System.Drawing;
-
- namespace MoreTerra.Structures
- {
- // Used to store both the point and the count of a marker we need to draw on the map.
- // This way we can set up a filter system to show only sets large enough to be of interest.
- public class MarkerLoc
- {
- private Point _pv;
- private int _count;
-
- #region Constructors
- public MarkerLoc(Point p, int c)
- {
- _pv = p;
- _count = c;
- }
- #endregion
-
- #region GetSet Functions
- public Point pv
- {
- get
- {
- return _pv;
- }
- }
-
- public int count
- {
- get
- {
- return _count;
- }
- }
- #endregion
- }
- }