diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-21 22:01:35 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-07-21 22:01:35 +0200 |
commit | 168c760b06b3f3a755779f4356045374d452994d (patch) | |
tree | 99bd608fdd499839ba56e0ec1a19350bd4c55654 /docs/Object ownership.gv | |
parent | Added a StringToMobType() function to the Lua API (patch contributed by STR_Warrior) (diff) | |
download | cuberite-168c760b06b3f3a755779f4356045374d452994d.tar cuberite-168c760b06b3f3a755779f4356045374d452994d.tar.gz cuberite-168c760b06b3f3a755779f4356045374d452994d.tar.bz2 cuberite-168c760b06b3f3a755779f4356045374d452994d.tar.lz cuberite-168c760b06b3f3a755779f4356045374d452994d.tar.xz cuberite-168c760b06b3f3a755779f4356045374d452994d.tar.zst cuberite-168c760b06b3f3a755779f4356045374d452994d.zip |
Diffstat (limited to 'docs/Object ownership.gv')
-rw-r--r-- | docs/Object ownership.gv | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/docs/Object ownership.gv b/docs/Object ownership.gv new file mode 100644 index 000000000..007432154 --- /dev/null +++ b/docs/Object ownership.gv @@ -0,0 +1,29 @@ +digraph
+{
+rankdir=LR
+Root -> Server
+Root -> MonsterConfig
+Root -> GroupManager
+Root -> CraftingRecipes
+Root -> FurnaceRecipe
+Root -> PluginManager
+Root -> Authenticator
+Root -> World
+Server -> ListenThreadIPv4
+Server -> ListenThreadIPv6
+Server -> ClientHandle
+Server -> RCONServer
+PluginManager -> Plugin_NewLua
+PluginManager -> Plugin
+World -> SimulatorManager
+World -> SandSimulator
+World -> WaterSimulator
+World -> LavaSimulator
+World -> FireSimulator
+World -> RedstoneSimulator
+World -> WorldStorage
+World -> Player
+World -> Generator
+World -> ChunkSender
+World -> LightingThread
+}
\ No newline at end of file |