Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

375 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Client Framework for Minecraft (CF4M)

Install

Maven URL

JitPack

Releases

Demo

A sample module

@Module("Sprint")
public class Sprint {
    @Event
    private void onUpdate(UpdateEvent updateEvent) {
        System.out.println("a sample");
    }
}

A sample command

@Command({"e", "enable"})
public class EnableCommand {
    @Exec
    private void exec() {
        System.out.println("a sample");
    }
}

A sample config

@Config("Module")
public class ModuleConfig {
    @Load
    public void load() {
        System.out.println("Load file");
    }

    @Save
    public void save() {
        System.out.println("Save file");
    }
}

More

About

Client Framework for Minecraft

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages