Parse ProjectVersion.txt from a Unity project. Convenience function that wraps ProjectVersion.from_file().
(project_path: Path)
| 61 | |
| 62 | |
| 63 | def parse_project_version(project_path: Path) -> ProjectVersion: |
| 64 | """Parse ProjectVersion.txt from a Unity project. |
| 65 | |
| 66 | Convenience function that wraps ProjectVersion.from_file(). |
| 67 | """ |
| 68 | return ProjectVersion.from_file(project_path) |
| 69 | |
| 70 | |
| 71 | def is_unity_project(path: Path) -> bool: |