Skip to content

PolyTech Framework v0.9.3 - Minor feature update

Compare
Choose a tag to compare
@Conqu3red Conqu3red released this 06 Feb 18:12
· 12 commits to master since this release
8033a1a

Added authors to PolyTechMod by setting this in a mod ptf will add your mod and the authors to the end of the pb2 credits.
Example:

// ...
public Awake(){
    // ...
    this.authors = new string[] {"user1", "user2"};
    registerMod(this);
}
// ...