zengine-old/engine/src/engine/asset/res/meta_bundle.cpp
2024-07-02 17:27:38 +08:00

14 lines
297 B
C++

#include "meta_bundle.h"
#include <algorithm>
namespace engineapi
{
bool MetaBundle::operator==(const MetaBundle& other)const
{
return metadatas == other.metadatas;
}
bool MetaBundle::operator!=(const MetaBundle& other)const
{
return !(*this == other);
}
}