Search in sources :

Example 1 with Accounts

use of mathax.client.systems.accounts.Accounts in project Client by MatHax.

the class Systems method init.

public static void init() {
    System<?> config = add(new Config());
    config.init();
    config.load();
    add(new Modules());
    add(new Commands());
    add(new Friends());
    add(new Enemies());
    add(new Macros());
    add(new Accounts());
    add(new Waypoints());
    add(new Profiles());
    add(new Proxies());
    add(new HUD());
    MatHax.EVENT_BUS.subscribe(Systems.class);
}
Also used : Waypoints(mathax.client.systems.waypoints.Waypoints) Enemies(mathax.client.systems.enemies.Enemies) Proxies(mathax.client.systems.proxies.Proxies) Config(mathax.client.systems.config.Config) Modules(mathax.client.systems.modules.Modules) Friends(mathax.client.systems.friends.Friends) HUD(mathax.client.systems.hud.HUD) Profiles(mathax.client.systems.profiles.Profiles) Commands(mathax.client.systems.commands.Commands) Macros(mathax.client.systems.macros.Macros) Accounts(mathax.client.systems.accounts.Accounts)

Aggregations

Accounts (mathax.client.systems.accounts.Accounts)1 Commands (mathax.client.systems.commands.Commands)1 Config (mathax.client.systems.config.Config)1 Enemies (mathax.client.systems.enemies.Enemies)1 Friends (mathax.client.systems.friends.Friends)1 HUD (mathax.client.systems.hud.HUD)1 Macros (mathax.client.systems.macros.Macros)1 Modules (mathax.client.systems.modules.Modules)1 Profiles (mathax.client.systems.profiles.Profiles)1 Proxies (mathax.client.systems.proxies.Proxies)1 Waypoints (mathax.client.systems.waypoints.Waypoints)1