Advertisement
Guest User

Roblox Hierarchy

a guest
Jul 22nd, 2012
2,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 12.53 KB | None | 0 0
  1.  
  2. |
  3. |- App
  4. |   |- Gui
  5. |   |   |- ChatOutput.cpp
  6. |   |   |- GUI.cpp
  7. |   |   |- ProfanityFilter.cpp
  8. |   |   `- Widget.cpp
  9. |   |
  10. |   |- humanoid
  11. |   |   |- Balancing.cpp
  12. |   |   |- Freefall.cpp
  13. |   |   |- Humanoid.cp
  14. |   |   |- Humanoid.cpp
  15. |   |   |- HumanoidState.cpp
  16. |   |   |- Jumping.cpp
  17. |   |   |- MovingNoPhysicsBase.cpp
  18. |   |   |- RunningBase.cpp
  19. |   |   `- Swimming.cpp
  20. |   |
  21. |   |- include
  22. |   |   |- gui
  23. |   |   |   |- gui.h
  24. |   |   |   `- GuiEvent.h
  25. |   |   |
  26. |   |   |- humanoid
  27. |   |   |   `- HumanoidState.h
  28. |   |   |
  29. |   |   |- lua
  30. |   |   |   `- luabridge.h
  31. |   |   |
  32. |   |   |- reflection
  33. |   |   |   |- Descriptor.h
  34. |   |   |   |- EnumConverter.h
  35. |   |   |   |- Event.h
  36. |   |   |   |- Member.h
  37. |   |   |   |- Property.h
  38. |   |   |   |- Reflection.h
  39. |   |   |   `- Type.h
  40. |   |   |
  41. |   |   |- script
  42. |   |   |   `- LuaArguments.h
  43. |   |   |
  44. |   |   |- tool
  45. |   |   |   `- MegaDragger.h
  46. |   |   |
  47. |   |   |- util
  48. |   |   |   |- BiMultiMap.h
  49. |   |   |   |- ClusterCellIterator.h
  50. |   |   |   |- ComputeProp.h
  51. |   |   |   |- ConcurrencyValidator.h
  52. |   |   |   |- ControlledLRUCache.h
  53. |   |   |   |- Extents.h
  54. |   |   |   |- ExtentsInt32.h
  55. |   |   |   |- Face.h
  56. |   |   |   |- FixedArray.h
  57. |   |   |   |- Guid.h
  58. |   |   |   |- IndexArray.h
  59. |   |   |   |- IndexArray.h
  60. |   |   |   |- IndexedTree.h
  61. |   |   |   |- math.h
  62. |   |   |   |- Object.h
  63. |   |   |   |- StlExtra.h
  64. |   |   |   |- utilities.h
  65. |   |   |   `- Vector3int32.h
  66. |   |   |
  67. |   |   |- v8datamodel
  68. |   |   |   |- ActionStation.h
  69. |   |   |   |- CharacterAppearance.h
  70. |   |   |   |- CustomEventReceiver.h
  71. |   |   |   |- DebugSettings.h
  72. |   |   |   |- EventReplicator.h
  73. |   |   |   |- GlobalSettings.h
  74. |   |   |   |- GuiObject.h
  75. |   |   |   |- MegaCluster.h
  76. |   |   |   |- ModelInstance.h
  77. |   |   |   |- Mouse.h
  78. |   |   |   |- Platform.h
  79. |   |   |   |- Seat.h
  80. |   |   |   |- Selection.h
  81. |   |   |   |- Test.h
  82. |   |   |   |- Workspace.h
  83. |   |   |   `- GuiLayerCollector.cpp
  84. |   |   |
  85. |   |   |- v8kernel
  86. |   |   |   |- Body.h
  87. |   |   |   |- IStage.h
  88. |   |   |   |- KernelData.h
  89. |   |   |   |- KernelIndex.h
  90. |   |   |   |- Link.h
  91. |   |   |   `- Pair.h
  92. |   |   |
  93. |   |   |- v8tree
  94. |   |   |   |- Instance.h
  95. |   |   |   `- Service.h
  96. |   |   |
  97. |   |   `- v8world
  98. |   |       |- Assembly.h
  99. |   |       |- Ball.h
  100. |   |       |- BasicSpatialHashPrimitive.h
  101. |   |       |- Block.h
  102. |   |       |- Contact.h
  103. |   |       |- Edge.h
  104. |   |       |- Geometry.h
  105. |   |       |- GeometryPool.h
  106. |   |       |- GlueJoint.h
  107. |   |       |- IMoving.h
  108. |   |       |- IPipelined.h
  109. |   |       |- IWorldStage.h
  110. |   |       |- Joint.h
  111. |   |       |- KernelJoint.h
  112. |   |       |- Mesh.h
  113. |   |       |- Primitive.h
  114. |   |       |- RigidJoint.h
  115. |   |       |- SendPhysics.h
  116. |   |       |- SpatialFilter.h
  117. |   |       |- SpatialHashMultiRes.h
  118. |   |       |- SpatialHashMultiRes.inl
  119. |   |       `- World.h
  120. |   |
  121. |   |- reflection
  122. |   |   |- reflection_object.cpp
  123. |   |   |- reflection_property.cpp
  124. |   |   `- type.cpp
  125. |   |
  126. |   |- script
  127. |   |   |- CoreScript.cp
  128. |   |   |- CoreScript.cpp
  129. |   |   |- LuaEnum.cpp
  130. |   |   |- LuaInstanceBridge.cpp
  131. |   |   |- LuaLibrary.cpp
  132. |   |   |- LuaMemory.cpp
  133. |   |   |- LuaSignalBridge.cpp
  134. |   |   |- ScriptContext.cpp
  135. |   |   |- ScriptEvent.cpp
  136. |   |   |- ScriptStats.cp
  137. |   |   |- ScriptStats.cpp
  138. |   |   `- ThreadRef.cpp
  139. |   |  
  140. |   |- security
  141. |   |   `- SecurityContext.cpp
  142. |   |
  143. |   |- tool
  144. |   |   |- AdvDragTool.cpp
  145. |   |   |- AdvLuaDragger.cp
  146. |   |   |- AdvLuaDragger.cpp
  147. |   |   |- AdvLuaDragTool.cpp
  148. |   |   |- AdvMoveTool.cpp
  149. |   |   |- AdvRotateTool.cpp
  150. |   |   |- AdvRunDragger.cpp
  151. |   |   |- AxisMoveTool.cpp
  152. |   |   |- Dragger.cpp
  153. |   |   |- DragTool.cpp
  154. |   |   |- DragUtilities.cpp
  155. |   |   |- GroupDragTool.cpp
  156. |   |   |- GroupDropTool.cpp
  157. |   |   |- LuaDragger.cpp
  158. |   |   |- LuaDragTool.cpp
  159. |   |   |- MegaDragger.cpp
  160. |   |   |- MoveAndJoinTool.cpp
  161. |   |   |- MoveResizeJoinTool.cpp
  162. |   |   |- NullTool.cpp
  163. |   |   |- PartDragTool.cpp
  164. |   |   |- PartDropTool.cpp
  165. |   |   |- ResizeTool.cpp
  166. |   |   |- RunDragger.cpp
  167. |   |   `- ToolsArrow.cpp
  168. |   |
  169. |   |- util
  170. |   |   |- BrickColor.cpp
  171. |   |   |- ContentProvider.cp
  172. |   |   |- ContentProvider.cpp
  173. |   |   |- Extents.cpp
  174. |   |   |- Face.cpp
  175. |   |   |- FileSystem.cp
  176. |   |   |- FileSystem.cpp
  177. |   |   |- HeartbeatInstance.cpp
  178. |   |   |- Http.cpp
  179. |   |   |- IndexBox.cpp
  180. |   |   |- IndexedMesh.cpp
  181. |   |   |- IndexedTree.cpp
  182. |   |   |- InterpolatedCFrame.cpp
  183. |   |   |- LegacyContentTable.cpp
  184. |   |   |- Math.cpp
  185. |   |   |- MD5Hasher.cpp
  186. |   |   |- Name.cpp
  187. |   |   |- NormalId.cpp
  188. |   |   |- Profiling.cpp
  189. |   |   |- Rect.cpp
  190. |   |   |- RunStateOwner.cp
  191. |   |   |- RunStateOwner.cpp
  192. |   |   |- ScriptInformationProvider.cpp
  193. |   |   |- Sound.cpp
  194. |   |   |- SpanningEdge.cpp
  195. |   |   |- SpanningTree.cpp
  196. |   |   |- SteppedInstance.cp
  197. |   |   |- SteppedInstance.cpp
  198. |   |   |- ThreadPool.cpp
  199. |   |   `- UserInputBase.cpp
  200. |   |
  201. |   |- v8datamodel
  202. |   |   |- Accoutrement.cpp
  203. |   |   |- Animator.cpp
  204. |   |   |- Backpack.cpp
  205. |   |   |- BadgeService.cpp
  206. |   |   |- BasicPartInstance.cpp
  207. |   |   |- Camera.cp
  208. |   |   |- Camera.cpp
  209. |   |   |- ChangeHistory.cpp
  210. |   |   |- CollectionService.cpp
  211. |   |   |- Commands.cpp
  212. |   |   |- CookiesEngineService.cpp
  213. |   |   |- DataModel.cpp
  214. |   |   |- DataModelJob.cp
  215. |   |   |- DataModelJob.cpp
  216. |   |   |- Explosion.cpp
  217. |   |   |- ExtrudedPartInstance.cpp
  218. |   |   |- Feature.cpp
  219. |   |   |- FlagStand.cpp
  220. |   |   |- ForceField.cpp
  221. |   |   |- Frame.cpp
  222. |   |   |- GeometryService.cpp
  223. |   |   |- GuiBuilder.cp
  224. |   |   |- GuiBuilder.cpp
  225. |   |   |- GuiObject.cpp
  226. |   |   |- GuiService.cpp
  227. |   |   |- Gyro.cpp
  228. |   |   |- Hopper.cpp
  229. |   |   |- ICharacterSubject.cpp
  230. |   |   |- IEquipable.cp
  231. |   |   |- IEquipable.cpp
  232. |   |   |- InsertService.cpp
  233. |   |   |- JointInstance.cpp
  234. |   |   |- JointsService.cpp
  235. |   |   |- KeyframeSequence.cp
  236. |   |   |- KeyframeSequence.cpp
  237. |   |   |- MegaCluster.cpp
  238. |   |   |- Message.cpp
  239. |   |   |- ModelInstance.cpp
  240. |   |   |- MouseCommand.cpp
  241. |   |   |- PartInstance.cp
  242. |   |   |- PartInstance.cpp
  243. |   |   |- PhysicsInstructions.cpp
  244. |   |   |- PhysicsService.cpp
  245. |   |   |- PlayerGui.cpp
  246. |   |   |- PluginManager.cpp
  247. |   |   |- PluginMouse.cpp
  248. |   |   |- PVInstance.cpp
  249. |   |   |- RootInstance.cpp
  250. |   |   |- SafeChat.cpp
  251. |   |   |- Selection.cpp
  252. |   |   |- SkateboardController.cpp
  253. |   |   |- SkateboardPlatform.cpp
  254. |   |   |- SpawnLocation.cpp
  255. |   |   |- Stats.cp
  256. |   |   |- Stats.cpp
  257. |   |   |- Surface.cpp
  258. |   |   |- Surfaces.cpp
  259. |   |   |- Teams.cpp
  260. |   |   |- TeleportService.cp
  261. |   |   |- TeleportService.cpp
  262. |   |   |- Test.cpp
  263. |   |   |- TextBox.cpp
  264. |   |   |- TextService.cpp
  265. |   |   |- Tool.cp
  266. |   |   |- Tool.cpp
  267. |   |   |- ToolsSurface.cpp
  268. |   |   |- UserController.cpp
  269. |   |   |- VehicleSeat.cpp
  270. |   |   `- Workspace.cpp
  271. |   |
  272. |   |- v8kernel
  273. |   |   |- Body.cpp
  274. |   |   |- Cofm.cpp
  275. |   |   |- Connector.cpp
  276. |   |   |- Constants.cpp
  277. |   |   |- ContactConnector.cpp
  278. |   |   |- Kernel.cpp
  279. |   |   |- Link.cpp
  280. |   |   |- PolyConnectors.cpp
  281. |   |   `- SimBody.cpp
  282. |   |
  283. |   |- v8tree
  284. |   |   |- EnumProperty.cpp
  285. |   |   |- Instance.cpp
  286. |   |   |- Service.cpp
  287. |   |   `- Verb.cpp
  288. |   |
  289. |   |- v8world
  290. |   |   |- Assembly.cpp
  291. |   |   |- AssemblyStage.cpp
  292. |   |   |- Ball.cpp
  293. |   |   |- BallCellContact.cpp
  294. |   |   |- BallPolyContact.cpp
  295. |   |   |- Block.cpp
  296. |   |   |- Buoyancy.cpp
  297. |   |   |- CellContact.cpp
  298. |   |   |- CleanStage.cpp
  299. |   |   |- Clump.cpp
  300. |   |   |- Contact.cpp
  301. |   |   |- ContactManager.cpp
  302. |   |   |- ContactStage.cpp
  303. |   |   |- Edge.cpp
  304. |   |   |- EdgeBuffer.cpp
  305. |   |   |- GlueJoint.cpp
  306. |   |   |- GroundStage.cpp
  307. |   |   |- HumanoidStage.cpp
  308. |   |   |- IMoving.cpp
  309. |   |   |- IPipelined.cpp
  310. |   |   |- IWorldStage.cpp
  311. |   |   |- Joint.cpp
  312. |   |   |- JointStage.cpp
  313. |   |   |- ManualJointHelper.cpp
  314. |   |   |- ManualJointHelper.cpp
  315. |   |   |- Mechanism.cpp
  316. |   |   |- Mesh.cpp
  317. |   |   |- Motor6DJoint.cpp
  318. |   |   |- MotorJoint.cpp
  319. |   |   |- MovingAssemblyStage.cpp
  320. |   |   |- MovingStage.cpp
  321. |   |   |- MutilJoint.cpp
  322. |   |   |- Poly.cpp
  323. |   |   |- PolyCellContact.cpp
  324. |   |   |- PolyContact.cpp
  325. |   |   |- PolyPolyContact.cpp
  326. |   |   |- Primitive.cpp
  327. |   |   |- PrismPoly.cpp
  328. |   |   |- PyramidPoly.cpp
  329. |   |   |- RotateJoint.cpp
  330. |   |   |- SendPhysics.cpp
  331. |   |   |- SimJob.cpp
  332. |   |   |- SimulateStage.cpp
  333. |   |   |- SleepStage.cpp
  334. |   |   |- SpatialFilter.cpp
  335. |   |   |- SpatialHashMultiRes.cpp
  336. |   |   |- StepJointsStage.cpp
  337. |   |   |- TerrainPartition.cpp
  338. |   |   |- TreeStage.cpp
  339. |   |   |- WedgePoly.cpp
  340. |   |   `- World.cpp
  341. |   |
  342. |   `- v8xml
  343. |       |- SerializerV2.cpp
  344. |       |- XmlElement.cpp
  345. |       `- XmlSerializer.cpp
  346. |
  347. |- Base
  348. |   |- include
  349. |   |   |- rbx
  350. |   |   |   |- atomic.h
  351. |   |   |   |- Intrusive
  352. |   |   |   |   `- Set.h
  353. |   |   |   |- intrusive_ptr_target.h
  354. |   |   |   |- memory.h
  355. |   |   |   `- signal.h
  356. |   |   `- util
  357. |   |       `- stringbuffer.h
  358. |   |- rbx
  359. |   |   |- CEvent.cpp
  360. |   |   |- MathUtil.cpp
  361. |   |   |- ProcessPerfCounter.cpp
  362. |   |   |- TaskScheduler.cpp
  363. |   |   |- TaskScheduler.Job.cpp
  364. |   |   |- TaskScheduler.Thread.cpp
  365. |   |   `- ThreadSafe.cpp
  366. |   `- util
  367. |       `- RegistryUtil.cpp
  368. |
  369. |- ClientBase
  370. |   `- ReflectionMetadata.cpp
  371. |
  372. |- Network
  373. |   |- raknet
  374. |   |   `- Source
  375. |   |       |- BitStream.cpp
  376. |   |       |- DS_HuffmanEncodingTree.cp
  377. |   |       |- FileOperations.cpp
  378. |   |       |- RakPeer.cpp
  379. |   |       |- RakString.cpp
  380. |   |       |- ReliabilityLayer.cp
  381. |   |       |- SocketLayer.cpp
  382. |   |       |- StringCompressor.cpp
  383. |   |       `- StringTable.cpp
  384. |   |- include
  385. |   |   `- Network
  386. |   |       |- NetworkOwner.h
  387. |   |       |- Players.h
  388. |   |       `- CompactCFrame.h
  389. |   |- Client.cpp
  390. |   |- Client.cpp
  391. |   |- ClusterUpdateBuffer.cpp
  392. |   |- Compressor.cpp
  393. |   |- ConcurrentRakPeer.cpp
  394. |   |- Dictionary.cpp
  395. |   |- ErrorCompPhysicsSender.cpp
  396. |   |- ErrorCompPhysicsSender2.cpp
  397. |   |- InterpolatingPhysicsReceiver.cpp
  398. |   |- Item.cpp
  399. |   |- MechanismItem.cpp
  400. |   |- NetworkOwnerJob.cpp
  401. |   |- NetworkPacketCache.cpp
  402. |   |- Peer.cpp
  403. |   |- PhysicsReceiver.cpp
  404. |   |- PhysicsSender.cpp
  405. |   |- Player.cpp
  406. |   |- Players.cpp
  407. |   |- Replicator.cpp
  408. |   |- RoundRobinPhysicsSender.cpp
  409. |   |- Server.cpp
  410. |   |- ServerReplicator.cp
  411. |   |- ServerReplicator.cpp
  412. |   `- Streaming.cpp
  413. |
  414. |- Rendering
  415. |   |- AppDraw
  416. |   |   `- DrawAdorn.cpp
  417. |   |- g3d
  418. |   |   |- include
  419. |   |   |   `- G3d
  420. |   |   |       `- Array.h
  421. |   |   |- G3dCpp
  422. |   |   |   |- BinaryInput.cpp
  423. |   |   |   |- GImage.cpp
  424. |   |   |   |- GImage_ppm.cpp
  425. |   |   |   |- GImage_tga.cpp
  426. |   |   |   `- System.cpp
  427. |   |   `- System.cpp
  428. |   |
  429. |   |- GfxAdapters
  430. |   |   |- include
  431. |   |   |   `- GfxAdapters
  432. |   |   |       `- LevelCollector.h
  433. |   |   |- BrickMeshBuilder.cpp
  434. |   |   |- CustomizableMeshParams.cpp
  435. |   |   |- ExtrusionMeshBuilder.cpp
  436. |   |   |- HeadMeshBuilder.cpp
  437. |   |   |- MaterialAdapter.cpp
  438. |   |   |- MeshAdapter.h
  439. |   |   |- PartIdentifier.cp
  440. |   |   |- PartIdentifier.cpp
  441. |   |   |- PBBMeshBuilder.cpp
  442. |   |   |- SceneUpdater.cpp
  443. |   |   `- TrussBuilder.cpp
  444. |   |
  445. |   |- GfxBase
  446. |   |   |- include
  447. |   |   |   `- GfxBase
  448. |   |   |       |- GfxPart.h
  449. |   |   |       `- MeshFileContract.h
  450. |   |   |- FrameRateManager.cpp
  451. |   |   |- GfxPart.cpp
  452. |   |   |- IAdornableCollector.cpp
  453. |   |   |- RenderSettings.cp
  454. |   |   |- RenderSettings.cpp
  455. |   |   `- ViewBase.cpp
  456. |   |
  457. |   `- RbxOgre
  458. |       |- AdornRbxGfx.cpp
  459. |       |- istreamDataStream.cpp
  460. |       |- RbxArchive.cpp
  461. |       |- RbxCluster.cpp
  462. |       |- RbxFontFactory.cpp
  463. |       |- RbxGraphics.cpp
  464. |       |- RbxGraphics2D.cpp
  465. |       |- RbxManualResourceLoaderChain.cpp
  466. |       |- RbxMaterialLoader.cpp
  467. |       |- RbxMegaCluster.cpp
  468. |       |- RbxMeshLoader.cpp
  469. |       |- RbxParticleEmitter.cpp
  470. |       |- RbxParticleFactory.cpp
  471. |       |- RbxSceneManager.cpp
  472. |       |- RbxSceneUpdater.cpp
  473. |       |- RbxSSAO.cpp
  474. |       |- RbxTextureCompositor.cpp
  475. |       |- RbxTypesetter.cpp
  476. |       `- ViewRbxGfx.cpp
  477. |
  478. |- Roblox
  479. |   |- Win32
  480. |   |   `- Release
  481. |   |       `- RobloxApp.pdb
  482. |   |- ActiveDocView.cpp
  483. |   |- MainFrm.cpp
  484. |   |- ProgressDialog.cp
  485. |   |- ProgressDialog.cpp
  486. |   |- PropGrid.cpp
  487. |   |- Roblox.cpp
  488. |   |- RobloxControlMaterialSelector.cp
  489. |   |- RobloxControlMaterialSelector.cpp
  490. |   |- RobloxDoc.cpp
  491. |   |- RobloxWnd.cpp
  492. |   |- ScriptEditor.cpp
  493. |   |- ScriptReview.cpp
  494. |   `- UserInput.cpp
  495. |
  496. `- Win
  497.     |- DSVideoCaptureEngine.cpp
  498.     |- LogManager.cpp
  499.     |- UserInputUtil.cpp
  500.     `- VideoControl.cpp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement