multiplayersample_files.cmake 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #
  2. # Copyright (c) Contributors to the Open 3D Engine Project
  3. #
  4. # SPDX-License-Identifier: Apache-2.0 OR MIT
  5. #
  6. #
  7. set(FILES
  8. Include/GameplayEffectsNotificationBus.h
  9. Include/PlayerKnockbackBus.h
  10. Include/NetworkPrefabSpawnerInterface.h
  11. Include/PlayerCoinCollectorBus.h
  12. Include/PlayerIdentityBus.h
  13. Include/PlayerMatchLifecycleBus.h
  14. Include/WeaponNotificationBus.h
  15. Include/UiCoinCountBus.h
  16. Include/UiGameOverBus.h
  17. Include/UiPlayerArmorBus.h
  18. Source/Components/AttachPlayerWeaponComponent.h
  19. Source/Components/AttachPlayerWeaponComponent.cpp
  20. Source/Components/ExampleFilteredEntityComponent.h
  21. Source/Components/ExampleFilteredEntityComponent.cpp
  22. Source/Components/NetworkAiComponent.cpp
  23. Source/Components/NetworkAiComponent.h
  24. Source/Components/NetworkAnimationComponent.cpp
  25. Source/Components/NetworkAnimationComponent.h
  26. Source/Components/NetworkHealthComponent.cpp
  27. Source/Components/NetworkHealthComponent.h
  28. Source/Components/NetworkMatchComponent.cpp
  29. Source/Components/NetworkMatchComponent.h
  30. Source/Components/NetworkRandomComponent.cpp
  31. Source/Components/NetworkRandomComponent.h
  32. Source/Components/NetworkTeleportComponent.cpp
  33. Source/Components/NetworkTeleportComponent.h
  34. Source/Components/NetworkTeleportCompatibleComponent.cpp
  35. Source/Components/NetworkTeleportCompatibleComponent.h
  36. Source/Components/NetworkWeaponsComponent.cpp
  37. Source/Components/NetworkWeaponsComponent.h
  38. Source/Components/NetworkSimplePlayerCameraComponent.cpp
  39. Source/Components/NetworkSimplePlayerCameraComponent.h
  40. Source/Components/PerfTest/NetworkPrefabSpawnerComponent.cpp
  41. Source/Components/PerfTest/NetworkPrefabSpawnerComponent.h
  42. Source/Components/PerfTest/NetworkRandomImpulseComponent.cpp
  43. Source/Components/PerfTest/NetworkRandomImpulseComponent.h
  44. Source/Components/PerfTest/NetworkTestSpawnerComponent.cpp
  45. Source/Components/PerfTest/NetworkTestSpawnerComponent.h
  46. Source/Components/PerfTest/NetworkRandomTranslateComponent.cpp
  47. Source/Components/PerfTest/NetworkRandomTranslateComponent.h
  48. Source/Components/NetworkStressTestComponent.cpp
  49. Source/Components/NetworkStressTestComponent.h
  50. Source/Components/NetworkPlayerMovementComponent.cpp
  51. Source/Components/NetworkPlayerMovementComponent.h
  52. Source/Components/UI/UiCoinCountComponent.cpp
  53. Source/Components/UI/UiCoinCountComponent.h
  54. Source/Components/Multiplayer/GameplayEffectsComponent.cpp
  55. Source/Components/Multiplayer/GameplayEffectsComponent.h
  56. Source/Components/Multiplayer/GemComponent.cpp
  57. Source/Components/Multiplayer/GemComponent.h
  58. Source/Components/Multiplayer/GemSpawnerComponent.cpp
  59. Source/Components/Multiplayer/GemSpawnerComponent.h
  60. Source/Components/Multiplayer/MatchPlayerCoinsComponent.cpp
  61. Source/Components/Multiplayer/MatchPlayerCoinsComponent.h
  62. Source/Components/Multiplayer/PlayerArmorComponent.cpp
  63. Source/Components/Multiplayer/PlayerArmorComponent.h
  64. Source/Components/Multiplayer/PlayerCoinCollectorComponent.cpp
  65. Source/Components/Multiplayer/PlayerCoinCollectorComponent.h
  66. Source/Components/Multiplayer/PlayerIdentityComponent.cpp
  67. Source/Components/Multiplayer/PlayerIdentityComponent.h
  68. Source/Components/Multiplayer/EnergyBallComponent.cpp
  69. Source/Components/Multiplayer/EnergyBallComponent.h
  70. Source/Components/Multiplayer/EnergyCannonComponent.cpp
  71. Source/Components/Multiplayer/EnergyCannonComponent.h
  72. Source/Components/BackgroundMusicComponent.cpp
  73. Source/Components/BackgroundMusicComponent.h
  74. Source/Components/RpcTesterComponent.cpp
  75. Source/Components/RpcTesterComponent.h
  76. Source/Components/ScriptableDecalComponent.cpp
  77. Source/Components/ScriptableDecalComponent.h
  78. Source/Weapons/BaseWeapon.cpp
  79. Source/Weapons/BaseWeapon.h
  80. Source/Weapons/IWeapon.h
  81. Source/Weapons/ProjectileWeapon.cpp
  82. Source/Weapons/ProjectileWeapon.h
  83. Source/Weapons/TraceWeapon.cpp
  84. Source/Weapons/TraceWeapon.h
  85. Source/Weapons/WeaponGathers.cpp
  86. Source/Weapons/WeaponGathers.h
  87. Source/Weapons/WeaponTypes.cpp
  88. Source/Weapons/WeaponTypes.h
  89. Source/Weapons/SceneQuery.cpp
  90. Source/Weapons/SceneQuery.h
  91. Source/Effects/GameEffect.cpp
  92. Source/Effects/GameEffect.h
  93. Source/MultiplayerSampleSystemComponent.cpp
  94. Source/MultiplayerSampleSystemComponent.h
  95. Source/MultiplayerSampleTypes.h
  96. )