Add Discord RPC back with new features, add beta splitscreen support, PR's from MCLCE used in this https://github.com/MCLCE/MinecraftConsoles/pull/1044 https://github.com/MCLCE/MinecraftConsoles/pull/1136 https://github.com/MCLCE/MinecraftConsoles/pull/1245
9 lines
292 B
C++
9 lines
292 B
C++
#include "Material.h"
|
|
|
|
// 4J added, Java version just does a local alteration when instantiating the Material for webs to get the same thing
|
|
class WebMaterial : public Material
|
|
{
|
|
public:
|
|
WebMaterial(MaterialColor *color) : Material(color) {}
|
|
virtual bool blocksMotion() { return false; }
|
|
}; |