about summary refs log tree commit diff stats
path: root/data/maps/daedalus/rooms/Dark Light Room.txtpb
blob: 45526fd67a5bca9226ec6a2311990debf74ea6c3 (plain) (blame)
1
2
3
4
5
6
7
8
generated by cgit-pink 1.4.1 (git 2.36.1) at 2026-02-03 03:59:05 +0000
 


pan class="p">());
      revision = std::atoi(version_match[3].str().c_str());
    }
  }

  std::string ToString() const {
    return fmt::format("v{}.{}.{}", major, minor, revision);
  }

  bool operator<(const Version& rhs) const {
    return (major < rhs.major) ||
           (major == rhs.major &&
            (minor < rhs.minor ||
             (minor == rhs.minor && revision < rhs.revision)));
  }
};

constexpr const Version kTrackerVersion = Version(0, 10, 5);

#endif /* end of include guard: VERSION_H_C757E53C */