2dkg/2dkg_zad5/2dgk_zad5/KRectPawn.h
2022-01-20 08:52:14 +01:00

21 lines
363 B
C++

#pragma once
#include "KPawn.h"
#include "KRect.h"
namespace KapitanGame
{
class KRectPawn final :
public KPawn
{
public:
KRectPawn(const KVector2D& position, const KTexture& texture,
const std::shared_ptr<KPlayerController>& playerController, KSettings* settings);
const KCollider* GetCollider() const override;
private:
KRect Collider;
};
}