2024-05-09 11:37:56 -03:00
|
|
|
#include "csharp/object.hpp"
|
|
|
|
#include "csharp/type.hpp"
|
2024-05-01 19:09:43 -03:00
|
|
|
|
|
|
|
namespace xna {
|
2024-05-02 10:52:08 -03:00
|
|
|
size_t Object::GetHashCode() const
|
|
|
|
{
|
|
|
|
size_t seed = 0;
|
|
|
|
XnaHHashCombine(seed, this);
|
|
|
|
|
|
|
|
return seed;
|
|
|
|
}
|
2024-05-01 19:09:43 -03:00
|
|
|
}
|