mirror of
https://github.com/encounter/ph.git
synced 2026-03-30 11:34:37 -07:00
16 lines
253 B
C++
16 lines
253 B
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
|
|
#include "Debug/DebugHierarchyBase.hpp"
|
|
|
|
class DebugHierarchy : public DebugHierarchyBase {
|
|
public:
|
|
/* 00 (base) */
|
|
/* 08 */
|
|
|
|
/* 00 */ virtual ~DebugHierarchy() override;
|
|
/* 40 */
|
|
};
|