11 lines
174 B
C++
11 lines
174 B
C++
#pragma once
|
|
#include <string>
|
|
class FGDSerializer
|
|
{
|
|
public:
|
|
static bool BeginFGDFile(const std::string path);
|
|
|
|
static bool RegisterEntity();
|
|
|
|
static bool EndFGDFile();
|
|
}; |