BlockGame/blocks/Stoneblock.cpp

9 lines
239 B
C++
Raw Permalink Normal View History

2022-02-06 21:53:29 +00:00
//
// Created by lukas on 06.02.22.
//
#include "Stoneblock.h"
#include "TextureLoader.h"
Stoneblock::Stoneblock(uint xpos, uint ypos, uint zpos) : BaseBlock(xpos, ypos, zpos, TextureLoader::loadTexture("../assets/blocks/stone.bmp")) {}