11 lines
94 B
C++
11 lines
94 B
C++
|
#pragma once
|
||
|
|
||
|
namespace Components
|
||
|
{
|
||
|
class Ceg : public Component
|
||
|
{
|
||
|
public:
|
||
|
Ceg();
|
||
|
};
|
||
|
}
|