Beast.h
Anonymous
plain_text
08/18/2023 7:32 AM
364 B
22
Indexable
#ifndef Beast_h
#define Beast_h
#include <string>
#include "SFML\Graphics.hpp"
#include "Chicken.h"
using namespace sf;
class Beast : Chicken
{
Beast() {
CH.loadFromFile("Chicken1.png");
CHshape.setTexture(CH);
CHshape.setScale(2, 2);
}
};
#endifEditor is loading...