1
0
mirror of https://github.com/borgesdan/xn65 synced 2024-12-29 21:54:47 +01:00
xn65/framework/csharp/object.cpp
2024-06-01 20:45:00 -03:00

12 lines
189 B
C++

#include "csharp/object.hpp"
#include "csharp/type.hpp"
namespace xna {
size_t Object::GetHashCode() const
{
size_t seed = 0;
XnaHelper::HashCombine(seed, this);
return seed;
}
}