Skip to content
This repository was archived by the owner on Nov 1, 2024. It is now read-only.

Commit 0414f0b

Browse files
committed
remove useless headers
1 parent 67588fc commit 0414f0b

File tree

2 files changed

+8
-69
lines changed

2 files changed

+8
-69
lines changed

.all-contributorsrc

Lines changed: 0 additions & 61 deletions
This file was deleted.

headers/api/types/types.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -61,17 +61,17 @@ class ItemStack;
6161

6262
struct 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
};
6969
struct 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
};
7676
struct WActor : Wrapped<Actor> {
7777
WActor(Actor& x) : Wrapped<Actor>(x) {}
@@ -144,7 +144,7 @@ struct WBlockActor : Wrapped<BlockActor> {
144144
};
145145
struct WBlockSource :Wrapped<BlockSource> {
146146
WBlockSource(BlockSource& x) : Wrapped<BlockSource>(x) {}
147-
LIAPI WDim getDim();
147+
//LIAPI WDim getDim();
148148
};
149149
struct WExplosion {
150150
WBlockSource bs;

0 commit comments

Comments
 (0)