This repository has been archived on 2025-03-20. You can view files and clone it, but cannot push or open issues or pull requests.
The-Powder-Toy/src/graphics/FindingElement.h
2023-09-20 07:16:28 +02:00

15 lines
258 B
C

#pragma once
#include "simulation/StructProperty.h"
struct FindingElement
{
StructProperty property;
PropertyValue value;
bool operator ==(const FindingElement &other) const
{
return property == other.property &&
value == other.value;
}
};