mirror of
https://github.com/zeldaret/botw
synced 2026-08-15 20:40:24 -04:00
10 lines
220 B
C++
10 lines
220 B
C++
#pragma once
|
|
|
|
#include <Havok/Common/Base/hkBase.h>
|
|
|
|
class hkBaseObject {
|
|
public:
|
|
virtual ~hkBaseObject() = default;
|
|
virtual void __first_virtual_table_function__() {} // NOLINT(bugprone-reserved-identifier)
|
|
};
|