This commit is contained in:
CortexCore
2025-03-15 21:13:46 +08:00
parent b714f76560
commit ff7afe4133
22 changed files with 177 additions and 20 deletions

View File

@@ -12,11 +12,15 @@ namespace Project.B.Map
[SerializeField] private string author;
[SerializeField] private string mapAddress;
[SerializeField] private Texture overview;
[SerializeField] private Vector2 offset;
[SerializeField] private int size;
public string MapName => mapName;
public string Author => author;
public string Description => description;
public object Overview => overview;
public string MapAddress => mapAddress;
public Vector2 Offset => offset;
public int Size => size;
}
}
#endif