Something went wrong. Try again.
the game where you go into mines and start crafting! but for consoles (forked directly from smartcmd's github)
Something went wrong. Try again.
479 B · 17 lines
C
at main
1234567891011121314151617#pragma once
#include "..\Minecraft.World\DefaultDispenseItemBehavior.h"
class Projectile;
class AbstractProjectileDispenseBehavior : public DefaultDispenseItemBehavior{public: shared_ptr<ItemInstance> execute(BlockSource *source, shared_ptr<ItemInstance> dispensed);
protected: virtual void playSound(BlockSource *source); virtual shared_ptr<Projectile> getProjectile(Level *world, Position *position) = 0; virtual float getUncertainty(); virtual float getPower();};