Package net.cis.server.backend.manager.impl

Source Code of net.cis.server.backend.manager.impl.SystemManager

package net.cis.server.backend.manager.impl;

import net.cis.common.model.system.GameInformation;
import net.cis.server.backend.manager.ISystemManager;

public class SystemManager implements ISystemManager {

  private final byte GAME_VERSION = 0x00;

  @Override
  public boolean validateGameVersion(byte gameVersion) {
    return this.GAME_VERSION == gameVersion;
  }

  @Override
  public byte getGameVersion() {
    return GAME_VERSION;
  }

  @Override
  public GameInformation getActualGameInformation() {
    return new GameInformation();
  }
}
TOP

Related Classes of net.cis.server.backend.manager.impl.SystemManager

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.