45 lines
656 B
C++
45 lines
656 B
C++
#pragma once
|
|
|
|
#include "defines.h"
|
|
#include <windows.h>
|
|
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <fstream>
|
|
#include <cstdio>
|
|
|
|
#include "StringHelper.h"
|
|
#include "TextFileReader.h"
|
|
|
|
extern HANDLE g_FileChangeNotification;
|
|
|
|
void StopFileWatch();
|
|
|
|
void StartFileWatch();
|
|
void ReadDataFromDisc();
|
|
|
|
bool CheckFileWatch();
|
|
void WriteHeader();
|
|
|
|
extern int g_iCurSpriptLength;
|
|
extern int g_iCurSpriptParams;
|
|
|
|
void ReadTextInfos();
|
|
|
|
void ReadEntityInfos();
|
|
|
|
void ReadCrystalInfos();
|
|
|
|
void ReadScriptTxt();
|
|
|
|
void ReadSceneTxt();
|
|
|
|
void ReadShader( char* pcTarget, const char* pcFileName );
|
|
|
|
void ReadShaders();
|
|
|
|
void WriteHeaderFunc();
|
|
|
|
void ReadParamTxt();
|
|
|