engine/include/systems/transform.hpp

20 lines
260 B
C++
Raw Normal View History

2023-01-02 17:24:20 +00:00
#pragma once
#include "ecs_system.hpp"
namespace engine {
class TransformSystem : public System {
public:
2023-01-05 13:21:33 +00:00
TransformSystem(Scene* scene);
2023-01-02 17:24:20 +00:00
2023-01-05 13:21:33 +00:00
void onUpdate(float ts) override;
2023-01-02 17:24:20 +00:00
2023-01-05 13:21:33 +00:00
uint32_t getChildEntity(uint32_t parent, const std::string& tag);
2023-01-02 17:24:20 +00:00
};
}