Restructure repository to include all source folders
Move git root from Client/ to src/ to track all source code: - Client: Game client source (moved to Client/Client/) - Server: Game server source - GameTools: Development tools - CryptoSource: Encryption utilities - database: Database scripts - Script: Game scripts - rylCoder_16.02.2008_src: Legacy coder tools - GMFont, Game: Additional resources 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
34
Server/ToolProject/GameDBTool/GameDBTool.h
Normal file
34
Server/ToolProject/GameDBTool/GameDBTool.h
Normal file
@@ -0,0 +1,34 @@
|
||||
// GameDBTool.h : PROJECT_NAME 응용 프로그램에 대한 주 헤더 파일입니다.
|
||||
//
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifndef __AFXWIN_H__
|
||||
#error include 'stdafx.h' before including this file for PCH
|
||||
#endif
|
||||
|
||||
#include "resource.h" // 주 기호
|
||||
|
||||
#include <DB/DBComponent.h>
|
||||
#include <DB/GameDBComponent.h>
|
||||
#include <Utility/Math/Math.h>
|
||||
|
||||
// CGameDBToolApp:
|
||||
// 이 클래스의 구현에 대해서는 GameDBTool.cpp을 참조하십시오.
|
||||
//
|
||||
|
||||
class CGameDBToolApp : public CWinApp
|
||||
{
|
||||
public:
|
||||
CGameDBToolApp();
|
||||
|
||||
// 재정의
|
||||
public:
|
||||
virtual BOOL InitInstance();
|
||||
|
||||
// 구현
|
||||
|
||||
DECLARE_MESSAGE_MAP()
|
||||
};
|
||||
|
||||
extern CGameDBToolApp theApp;
|
||||
Reference in New Issue
Block a user