최종완료보고 버전

This commit is contained in:
CodeTempla
2026-05-20 03:08:08 +09:00
commit 10d255ed51
548 changed files with 435582 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#ifndef OBJECT__H_
#define OBJECT__H_
#ifdef _WIN32
#pragma once
#endif
class HObject
{
public:
HObject() {}
virtual ~HObject() {}
};
#endif // OBJECT__H_