source: TFP-WebServer/MarkersMod/src/MarkerData.cs@ 500

Last change on this file since 500 was 487, checked in by alloc, 5 months ago

1.1.0.1 Release for V 1.0

File size: 442 bytes
Line 
1namespace Examples {
2 public readonly struct MarkerData {
3 public readonly string Id;
4 public readonly Vector2i Position;
5 public readonly string Name;
6 public readonly string Icon;
7
8 public MarkerData (string _id, Vector2i _position, string _name, string _icon) {
9 Id = _id;
10 Position = _position;
11 Name = _name;
12 Icon = _icon;
13 }
14 }
15}
Note: See TracBrowser for help on using the repository browser.