This commit is contained in:
2022-01-20 08:52:14 +01:00
parent 7623bde891
commit 0a34c2e094
70 changed files with 3766 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#include "KSolid.h"
#include "KCamera.h"
namespace KapitanGame
{
KSolid::KSolid(const KVector2D& position, const KTexture& texture, SDL_Rect* tileClip, const SDL_RendererFlip flip) : KDrawable(position, texture, tileClip, flip)
{
}
}