Newer
Older
Architecture / src / main / java / proto / BasePull.java
yoichiro on 30 Jun 2019 195 bytes pull push
package proto;

public class BasePull {
	int t;

	public int getT() {
		update();
		return t;
	}

	public void setT(int t) {
		this.t = t;
	}
	
	private void update() {
		
	}
}