CSEngine
Loading...
Searching...
No Matches
MoreComponentFunc.h
1//
2// Created by ounols on 19. 8. 31.
3//
4#pragma once
5
6#include "../Component/SComponent.h"
7#include "sqext.h"
8
9namespace CSE {
10
12 private:
14
16
17 public:
18 static SComponent* CreateComponent(SGameObject* obj, std::string component_type);
19
20 static void BindComponentToSQInstance(SComponent* component, std::string name,
21 sqext::SQIClassInstance* instance);
22 };
23}