Just curious, is there a way to have a getter for a constant variable? I have a sort of internal version number to ensure that two versions of a library are still speaking t
Constants cannot be reassigned, hence why they are called constant therefore just make protocol_version public
public
private const Int16 protocol_version = 1;