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

examples.Life.src.main.gosu.life.InfinitiCell.gs Maven / Gradle / Ivy

There is a newer version: 1.18.1
Show newest version
package life

final class InfinitiCell extends Cell {
  construct( x: int, y: int ) {
    super( x, y )
    _hash = 1543 * x + y
  }

  override function equals( obj: Object ): boolean {
    var that = obj as InfinitiCell
    var ret = _x == that._x && _y == that._y
    return ret
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy