mirror of
https://github.com/zeldaret/ph
synced 2026-05-23 15:01:37 -04: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 */
|
|
};
|