OSDN Git Service

commit the part that makes the map work
[automap/automap.git] / Automap / Data / EntitiesOfInterest.cs
index e006d3c..d22f328 100644 (file)
@@ -20,23 +20,26 @@ namespace Automap
        [ProtoContract]
        public struct EntityOfInterest
        {
-               
+
+               [DisplayName(0, "Name")]
                [ProtoMember(1)]
                public string Name;
                
-               [DisplayName(1, "Notes")]
+               [DisplayName(2, "Notes")]
                [ProtoMember(2)]
                public string Notes;
 
-               [DisplayName(0, "Loc.")]
+               [DisplayName(1, "Loc.")]
+               public string PrettyLocation;
+
                [ProtoMember(3)]
                public BlockPos Location;
 
-               [DisplayName(2, "Time")]
+               [DisplayName(3, "Time")]
                [ProtoMember(4)]
                public DateTime Timestamp;
 
-               [DisplayName(3, "ID")]
+               [DisplayName(4, "ID")]
                [ProtoMember(5)]
                public long EntityId;