GameResource.java 141 Bytes
Newer Older
Melledy's avatar
Melledy committed
1
2
package emu.grasscutter.data;

3
public abstract class GameResource {
Melledy's avatar
Melledy committed
4
5
6
7
8
9
10
11
12
	
	public int getId() {
		return 0;
	}
	
	public void onLoad() {
		
	}
}