@@ -61,17 +61,17 @@ class ItemStack;
6161
6262struct WDim : Wrapped<Dimension> {
6363 WDim (Dimension& x) : Wrapped<Dimension>(x) {}
64- LIAPI class BlockSource & getBlockSource_ ();
65- LIAPI void setBlock (int x, int y, int z, Block const & blk);
66- LIAPI struct WBlock getBlock (int x, int y, int z);
67- LIAPI int getID ();
64+ // LIAPI class BlockSource& getBlockSource_();
65+ // LIAPI void setBlock(int x, int y, int z, Block const& blk);
66+ // LIAPI struct WBlock getBlock(int x, int y, int z);
67+ // LIAPI int getID();
6868};
6969struct WLevel : Wrapped<ServerLevel> {
7070 WLevel () : Wrapped<ServerLevel>() {}
7171 WLevel (ServerLevel& x) : Wrapped<ServerLevel>(x) {}
72- LIAPI array_view<WPlayer> getUsers ();
73- LIAPI optional<WPlayer> getPlayer (string_view name);
74- LIAPI void broadcastText (string_view text, TextType type = RAW);
72+ // LIAPI array_view<WPlayer> getUsers();
73+ // LIAPI optional<WPlayer> getPlayer(string_view name);
74+ // LIAPI void broadcastText(string_view text, TextType type = RAW);
7575};
7676struct WActor : Wrapped<Actor> {
7777 WActor (Actor& x) : Wrapped<Actor>(x) {}
@@ -144,7 +144,7 @@ struct WBlockActor : Wrapped<BlockActor> {
144144};
145145struct WBlockSource :Wrapped<BlockSource> {
146146 WBlockSource (BlockSource& x) : Wrapped<BlockSource>(x) {}
147- LIAPI WDim getDim ();
147+ // LIAPI WDim getDim();
148148};
149149struct WExplosion {
150150 WBlockSource bs;
0 commit comments