multiplayer_files.cmake 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project.
  3. # For complete copyright and license terms please see the LICENSE at the root of this distribution.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0 OR MIT
  6. #
  7. #
  8. set(FILES
  9. Include/Multiplayer/IMultiplayer.h
  10. Include/Multiplayer/IMultiplayerDebug.h
  11. Include/Multiplayer/IMultiplayerSpawner.h
  12. Include/Multiplayer/IMultiplayerTools.h
  13. Include/Multiplayer/MultiplayerConstants.h
  14. Include/Multiplayer/MultiplayerDebug.h
  15. Include/Multiplayer/MultiplayerDebug.inl
  16. Include/Multiplayer/MultiplayerMetrics.h
  17. Include/Multiplayer/MultiplayerStats.h
  18. Include/Multiplayer/MultiplayerTypes.h
  19. Include/Multiplayer/MultiplayerEditorServerBus.h
  20. Include/Multiplayer/Components/SimplePlayerSpawnerComponent.h
  21. Include/Multiplayer/Components/ISimplePlayerSpawner.h
  22. Include/Multiplayer/Components/MultiplayerComponent.h
  23. Include/Multiplayer/Components/MultiplayerComponentRegistry.h
  24. Include/Multiplayer/Components/MultiplayerController.h
  25. Include/Multiplayer/Components/NetBindComponent.h
  26. Include/Multiplayer/NetworkInput/NetworkInput.h
  27. Include/Multiplayer/NetworkInput/NetworkInputArray.h
  28. Include/Multiplayer/NetworkInput/NetworkInputChild.h
  29. Include/Multiplayer/NetworkInput/NetworkInputHistory.h
  30. Include/Multiplayer/NetworkInput/NetworkInputMigrationVector.h
  31. Include/Multiplayer/NetworkEntity/NetworkEntityHandle.h
  32. Include/Multiplayer/NetworkEntity/NetworkEntityHandle.inl
  33. Include/Multiplayer/NetworkEntity/NetworkEntityRpcMessage.h
  34. Include/Multiplayer/NetworkEntity/NetworkEntityUpdateMessage.h
  35. Include/Multiplayer/NetworkEntity/EntityReplication/EntityReplicationManager.h
  36. Include/Multiplayer/NetworkEntity/EntityReplication/EntityReplicator.h
  37. Include/Multiplayer/NetworkEntity/EntityReplication/EntityReplicator.inl
  38. Include/Multiplayer/ConnectionData/IConnectionData.h
  39. Include/Multiplayer/EntityDomains/IEntityDomain.h
  40. Include/Multiplayer/IMultiplayer.h
  41. Include/Multiplayer/IMultiplayerTools.h
  42. Include/Multiplayer/INetworkSpawnableLibrary.h
  43. Include/Multiplayer/MultiplayerConstants.h
  44. Include/Multiplayer/MultiplayerStats.h
  45. Include/Multiplayer/MultiplayerTypes.h
  46. Include/Multiplayer/NetworkEntity/IFilterEntityManager.h
  47. Include/Multiplayer/NetworkEntity/INetworkEntityManager.h
  48. Include/Multiplayer/NetworkEntity/EntityReplication/ReplicationRecord.h
  49. Include/Multiplayer/NetworkInput/IMultiplayerComponentInput.h
  50. Include/Multiplayer/NetworkTime/INetworkTime.h
  51. Include/Multiplayer/NetworkTime/RewindableArray.h
  52. Include/Multiplayer/NetworkTime/RewindableArray.inl
  53. Include/Multiplayer/NetworkTime/RewindableFixedVector.h
  54. Include/Multiplayer/NetworkTime/RewindableFixedVector.inl
  55. Include/Multiplayer/NetworkTime/RewindableObject.h
  56. Include/Multiplayer/NetworkTime/RewindableObject.inl
  57. Include/Multiplayer/ReplicationWindows/IReplicationWindow.h
  58. Include/Multiplayer/Session/IMatchmakingRequests.h
  59. Include/Multiplayer/Session/ISessionHandlingRequests.h
  60. Include/Multiplayer/Session/ISessionRequests.h
  61. Include/Multiplayer/Session/MatchmakingRequests.h
  62. Include/Multiplayer/Session/MatchmakingNotifications.h
  63. Include/Multiplayer/Session/SessionRequests.h
  64. Include/Multiplayer/Session/SessionConfig.h
  65. Include/Multiplayer/Session/SessionNotifications.h
  66. Source/Components/SimplePlayerSpawnerComponent.cpp
  67. Source/Components/MultiplayerComponent.cpp
  68. Source/Components/MultiplayerComponentRegistry.cpp
  69. Source/Components/MultiplayerController.cpp
  70. Source/Components/NetBindComponent.cpp
  71. Source/EntityDomains/FullOwnershipEntityDomain.cpp
  72. Source/EntityDomains/FullOwnershipEntityDomain.h
  73. Source/EntityDomains/NullEntityDomain.cpp
  74. Source/EntityDomains/NullEntityDomain.h
  75. Source/MultiplayerStatSystemComponent.cpp
  76. Source/MultiplayerStatSystemComponent.h
  77. Source/MultiplayerStats.cpp
  78. Source/NetworkEntity/NetworkEntityHandle.cpp
  79. Source/NetworkEntity/NetworkEntityRpcMessage.cpp
  80. Source/NetworkEntity/NetworkEntityTracker.cpp
  81. Source/NetworkEntity/NetworkEntityTracker.h
  82. Source/NetworkEntity/NetworkEntityTracker.inl
  83. Source/NetworkEntity/NetworkEntityUpdateMessage.cpp
  84. Source/NetworkEntity/EntityReplication/ReplicationRecord.cpp
  85. Source/NetworkInput/NetworkInput.cpp
  86. Source/NetworkInput/NetworkInputArray.cpp
  87. Source/NetworkInput/NetworkInputChild.cpp
  88. Source/NetworkInput/NetworkInputHistory.cpp
  89. Source/NetworkInput/NetworkInputMigrationVector.cpp
  90. Source/Session/MatchmakingRequests.cpp
  91. Source/Session/SessionRequests.cpp
  92. Source/Session/SessionConfig.cpp
  93. ${LY_ROOT_FOLDER}/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Header.jinja
  94. ${LY_ROOT_FOLDER}/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Inline.jinja
  95. ${LY_ROOT_FOLDER}/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPackets_Source.jinja
  96. ${LY_ROOT_FOLDER}/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Header.jinja
  97. ${LY_ROOT_FOLDER}/Code/Framework/AzNetworking/AzNetworking/AutoGen/AutoPacketDispatcher_Inline.jinja
  98. Source/AutoGen/Multiplayer.AutoPackets.xml
  99. Source/AutoGen/MultiplayerEditor.AutoPackets.xml
  100. )