/* * SPDX-FileCopyrightText: 2023 Linnea Gräf * * SPDX-License-Identifier: GPL-3.0-or-later */ package moe.nea.firmament.util class IdentityCharacteristics(val value: T) { override fun equals(other: Any?): Boolean { return value === other } override fun hashCode(): Int { return System.identityHashCode(value) } }