File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change @@ -34,18 +34,14 @@ namespace CsvSpawner
34
34
* @brief Called when entity spawning begins.
35
35
* @param m_spawnInfo Struct holding information about entities to be spawned.
36
36
*/
37
- virtual void OnEntitiesSpawnBegin (CsvSpawnerUtils::SpawnInfo& m_spawnInfo)
38
- {
39
- }
37
+ virtual void OnEntitiesSpawnBegin (CsvSpawnerUtils::SpawnInfo& m_spawnInfo) = 0;
40
38
41
39
/* *
42
40
* @brief Called when entity spawning finishes.
43
41
* @param m_spawnInfo Struct holding information about entities to be spawned.
44
42
* @param m_statusCode Status code indicating success, failure and warnings of the spawn.
45
43
*/
46
- virtual void OnEntitiesSpawnFinished (CsvSpawnerUtils::SpawnInfo& m_spawnInfo, CsvSpawnerUtils::SpawnStatus& m_statusCode)
47
- {
48
- }
44
+ virtual void OnEntitiesSpawnFinished (CsvSpawnerUtils::SpawnInfo& m_spawnInfo, CsvSpawnerUtils::SpawnStatus& m_statusCode) = 0;
49
45
50
46
// / EBus Configuration - Allows multiple listeners to handle events.
51
47
static constexpr AZ::EBusHandlerPolicy HandlerPolicy = AZ::EBusHandlerPolicy::Multiple;
Original file line number Diff line number Diff line change 11
11
12
12
#pragma once
13
13
14
- #include " AzFramework/Physics/Collision/CollisionGroups.h"
15
- #include " AzFramework/Physics/Collision/CollisionLayers.h"
16
- #include " CsvSpawner/CsvSpawnerTypeIds.h"
14
+ #include < CsvSpawner/CsvSpawnerTypeIds.h>
17
15
18
16
#include < AzCore/Asset/AssetCommon.h>
19
17
#include < AzCore/Math/Transform.h>
20
18
#include < AzCore/Math/Vector3.h>
21
19
#include < AzCore/std/string/string.h>
20
+ #include < AzFramework/Physics/Collision/CollisionGroups.h>
22
21
#include < AzFramework/Spawnable/Spawnable.h>
23
22
#include < AzFramework/Spawnable/SpawnableEntitiesInterface.h>
24
23
You can’t perform that action at this time.
0 commit comments