All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.exkazuu.gameaiarena.common.GameTime Maven / Gradle / Ivy

package net.exkazuu.gameaiarena.common;

public class GameTime extends TypeSafeCloneable {
  private int currentTime;

  public GameTime() {
    currentTime = 0;
  }

  /**
   * ゲーム時間を1だけ進めます
   */
  public void tick() {
    currentTime++;
  }

  /**
   * ゲーム時間を指定した時間だけ進めます
   * 
   * @param time 進める時間
   */
  public void tick(int time) {
    currentTime += time;
  }

  /**
   * 現在のゲーム時間を返します
   * 
   * @return 現在のゲーム時間
   */
  public int getCurrentTime() {
    return currentTime;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy