source:
TFP-WebServer/MarkersMod/src/MarkerData.cs@
492
Last change on this file since 492 was 487, checked in by , 5 months ago | |
---|---|
File size: 442 bytes |
Line | |
---|---|
1 | namespace 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.