Initial commit: client source

This commit is contained in:
Andreas Lierschaft
2026-08-17 20:03:02 +02:00
commit 9ae37cd0ea
869 changed files with 227899 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#pragma once
// 2004.07.05.myevan.궁신탄영 맵에 끼이는 문제해결
class IBackground : public CSingleton<IBackground>
{
public:
IBackground() {}
virtual ~IBackground() {}
virtual bool IsBlock(int x, int y) = 0;
};