mirror of
https://github.com/zeldaret/botw
synced 2026-09-06 18:51:07 -04:00
11 lines
210 B
C++
11 lines
210 B
C++
#pragma once
|
|
|
|
#include <Havok/Common/Base/Object/hkBaseObject.h>
|
|
|
|
class hkReferencedObject : public hkBaseObject {
|
|
public:
|
|
virtual ~hkReferencedObject() {}
|
|
|
|
virtual const void* getClassType() const;
|
|
};
|