12 lines
220 B
C++
12 lines
220 B
C++
#pragma once
|
|
|
|
class IBackground : public CSingleton<IBackground>
|
|
{
|
|
public:
|
|
IBackground() {}
|
|
virtual ~IBackground() {}
|
|
|
|
virtual bool IsBlock(int x, int y) = 0;
|
|
};
|
|
//martysama0134's 2e58d0b8baeb072acdf3afc4a5d1999f
|