aboutsummaryrefslogtreecommitdiff
path: root/src/example
diff options
context:
space:
mode:
authormax-001 <maxsmits21@kpnmail.nl>2024-11-07 12:36:08 +0100
committermax-001 <maxsmits21@kpnmail.nl>2024-11-07 12:36:08 +0100
commitacbe6b5d4256db950827b120fe7cd781e45715f6 (patch)
tree8a4fa0077127a8d7f947da291d9a92efa94834ee /src/example
parent96ef24654d2ee26184ebcb5b9092649e67afe5d9 (diff)
Made name and tag const
Diffstat (limited to 'src/example')
-rw-r--r--src/example/ecs.cpp4
-rw-r--r--src/example/scene_manager.cpp8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/example/ecs.cpp b/src/example/ecs.cpp
index dfd3595..7593faf 100644
--- a/src/example/ecs.cpp
+++ b/src/example/ecs.cpp
@@ -38,8 +38,8 @@ int main() {
// Print the Metadata and Transform components
for (auto & m : metadata) {
- cout << "Id: " << m.get().GAME_OBJECT_ID << " Name: " << m.get().name
- << " Tag: " << m.get().tag << " Parent: " << m.get().parent
+ cout << "Id: " << m.get().GAME_OBJECT_ID << " Name: " << m.get().NAME
+ << " Tag: " << m.get().TAG << " Parent: " << m.get().parent
<< " Children: ";
for (auto & c : m.get().children) {
cout << c << " ";
diff --git a/src/example/scene_manager.cpp b/src/example/scene_manager.cpp
index 471c400..bfa9479 100644
--- a/src/example/scene_manager.cpp
+++ b/src/example/scene_manager.cpp
@@ -52,8 +52,8 @@ int main() {
cout << "Metadata components of Scene1:" << endl;
// Print the Metadata
for (auto & m : metadata) {
- cout << "Id: " << m.get().GAME_OBJECT_ID << " Name: " << m.get().name
- << " Tag: " << m.get().tag << endl;
+ cout << "Id: " << m.get().GAME_OBJECT_ID << " Name: " << m.get().NAME
+ << " Tag: " << m.get().TAG << endl;
}
// Set scene2 as the next scene
@@ -67,8 +67,8 @@ int main() {
cout << "Metadata components of Scene2:" << endl;
// Print the Metadata
for (auto & m : metadata) {
- cout << "Id: " << m.get().GAME_OBJECT_ID << " Name: " << m.get().name
- << " Tag: " << m.get().tag << endl;
+ cout << "Id: " << m.get().GAME_OBJECT_ID << " Name: " << m.get().NAME
+ << " Tag: " << m.get().TAG << endl;
}
return 0;