Removed a useless include file.
git-svn-id: http://mc-server.googlecode.com/svn/trunk@725 0a769ca7-a7f5-676a-18bf-c427514a06d6master
parent
897733a58e
commit
ecf6217ae9
|
@ -1,21 +0,0 @@
|
|||
#pragma once
|
||||
|
||||
// So we don't have to include fstream :P
|
||||
#ifdef _WIN32
|
||||
#ifndef _FILE_DEFINED
|
||||
struct _iobuf {
|
||||
char *_ptr;
|
||||
int _cnt;
|
||||
char *_base;
|
||||
int _flag;
|
||||
int _file;
|
||||
int _charbuf;
|
||||
int _bufsiz;
|
||||
char *_tmpfname;
|
||||
};
|
||||
typedef struct _iobuf FILE;
|
||||
#define _FILE_DEFINED
|
||||
#endif
|
||||
#else
|
||||
#include <stdio.h>
|
||||
#endif
|
|
@ -3,7 +3,6 @@
|
|||
|
||||
#include "cBlockEntity.h"
|
||||
#include "cWindowOwner.h"
|
||||
#include "FileDefine.h"
|
||||
#include "cItem.h"
|
||||
|
||||
|
||||
|
@ -21,6 +20,7 @@ class cServer;
|
|||
|
||||
|
||||
|
||||
|
||||
class cFurnaceEntity :
|
||||
public cBlockEntity,
|
||||
public cBlockEntityWindowOwner
|
||||
|
|
|
@ -2,7 +2,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "cWindowOwner.h"
|
||||
#include "FileDefine.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
namespace Json
|
||||
{
|
||||
|
|
|
@ -1,8 +1,6 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include "FileDefine.h"
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue