mirror of
https://github.com/danule222/xrbDS.git
synced 2025-06-18 14:25:33 -04:00
11 lines
159 B
C++
11 lines
159 B
C++
#ifndef COMPONENT_H
|
|
#define COMPONENT_H
|
|
|
|
#include "core/types.h"
|
|
|
|
struct Component {
|
|
public:
|
|
static PtrUnq<Component> Initialize();
|
|
};
|
|
|
|
#endif // COMPONENT_H
|