OSDN Git Service

15fdda8a096df3d1411ff311f9c798b67ef5e319
[automap/automap.git] / Automap / Data / PointOfInterest.cs
1 using System;
2
3 using Vintagestory.API.Common;
4 using Vintagestory.API.MathTools;
5
6 namespace Automap
7 {
8         /// <summary>
9         /// Actual Physical Point in space - that is interesting.
10         /// </summary>
11         public struct PointOfInterest
12         {
13                 CollectibleObject Thing;
14                 string Notes;
15                 BlockPos Location;
16                 DateTimeOffset Timestamp;
17         }
18
19 }
20