Starsector API
Loading...
Searching...
No Matches
VersionInfoAPI.java
Go to the documentation of this file.
1package com.fs.starfarer.api;
2
3public interface VersionInfoAPI {
4 String getMajor();
5 void setMajor(String major);
6 String getMinor();
7 void setMinor(String minor);
8 String getPatch();
9 void setPatch(String patch);
10
11 void setFromString(String str);
12 String getString();
13
14 boolean isSet();
15
16}