CSEngine
Loading...
Searching...
No Matches
SCloneFactory.h
1//
2// Created by ounols on 19. 2. 13.
3//
4
5#pragma once
6
7#include "../Component/SComponent.h"
8
9namespace CSE {
10
12 private:
14
16
17 public:
18 static SComponent* Clone(SComponent* component, SGameObject* parent = nullptr);
19
20 static SGameObject* Clone(SGameObject* object, SGameObject* parent = nullptr);
21 };
22}