mirror of
https://github.com/4jcraft/4jcraft.git
synced 2026-05-26 14:03:01 +00:00
12 lines
312 B
C++
12 lines
312 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "minecraft/world/SimpleContainer.h"
|
|
|
|
class AnimalChest : public SimpleContainer {
|
|
public:
|
|
AnimalChest(const std::string& name, int size);
|
|
AnimalChest(int iTitle, const std::string& name, bool hasCustomName,
|
|
int size); // 4J Added iTitle param
|
|
}; |