Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/WolfireGames/overgrowth.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Editors/entity_type.h')
-rw-r--r--Source/Editors/entity_type.h48
1 files changed, 24 insertions, 24 deletions
diff --git a/Source/Editors/entity_type.h b/Source/Editors/entity_type.h
index 4a7bc21b..401cc3e8 100644
--- a/Source/Editors/entity_type.h
+++ b/Source/Editors/entity_type.h
@@ -1,7 +1,7 @@
//-----------------------------------------------------------------------------
// Name: entity_type.cpp
// Developer: Wolfire Games LLC
-// Description:
+// Description:
// License: Read below
//-----------------------------------------------------------------------------
//
@@ -24,29 +24,29 @@
#pragma once
// These values are used in TypeEnable::SetFromConfig and TypeEnable::SaveToConfig
-enum EntityType{_any_type = 0,
- _no_type = 1,
- _camera_type = 2,
- _terrain_type = 11,
- _env_object = 20,
- _movement_object = 21,
- _spawn_point = 23,
- _decal_object = 24,
- _hotspot_object = 26,
- _group = 29,
- _rigged_object = 30,
- _item_object = 32,
- _path_point_object = 33,
- _ambient_sound_object = 34,
- _placeholder_object = 35,
- _light_probe_object = 36,
- _dynamic_light_object = 37,
- _navmesh_hint_object = 38,
- _navmesh_region_object = 39,
- _navmesh_connection_object = 40,
- _reflection_capture_object = 41,
- _light_volume_object = 42,
- _prefab = 43
+enum EntityType { _any_type = 0,
+ _no_type = 1,
+ _camera_type = 2,
+ _terrain_type = 11,
+ _env_object = 20,
+ _movement_object = 21,
+ _spawn_point = 23,
+ _decal_object = 24,
+ _hotspot_object = 26,
+ _group = 29,
+ _rigged_object = 30,
+ _item_object = 32,
+ _path_point_object = 33,
+ _ambient_sound_object = 34,
+ _placeholder_object = 35,
+ _light_probe_object = 36,
+ _dynamic_light_object = 37,
+ _navmesh_hint_object = 38,
+ _navmesh_region_object = 39,
+ _navmesh_connection_object = 40,
+ _reflection_capture_object = 41,
+ _light_volume_object = 42,
+ _prefab = 43
};
const char* CStringFromEntityType(EntityType type);