I work on a project and if the execution started I want it to load a save en when it stops I want it to save. the saving and loading works good enuf but my world doesn't execute stated or stopped
this code is in my world
annywanne know how to use this ?
1 2 3 4 5 6 7 | public void started() { System.out.println( "started" ); } public void stopped() { System.out.println( "stoped" ); } |