mirror of
https://github.com/borgesdan/xn65
synced 2024-12-29 21:54:47 +01:00
13 lines
180 B
C++
13 lines
180 B
C++
#ifndef XNA_CSHARP_OBJECT_HPP
|
|
#define XNA_CSHARP_OBJECT_HPP
|
|
|
|
#include "../default.hpp"
|
|
|
|
namespace xna {
|
|
class Object {
|
|
public:
|
|
virtual size_t GetHashCode() const;
|
|
};
|
|
}
|
|
|
|
#endif |