mirror of
https://github.com/ptitSeb/Serious-Engine
synced 2024-11-22 18:30:27 +01:00
216246cf15
Too many classes definitions in one file. Preparing for separation Menu.cpp
18 lines
293 B
C++
18 lines
293 B
C++
/* Copyright (c) 2002-2012 Croteam Ltd. All rights reserved. */
|
|
|
|
#ifndef SE_INCL_FILEINFO_H
|
|
#define SE_INCL_FILEINFO_H
|
|
#ifdef PRAGMA_ONCE
|
|
#pragma once
|
|
#endif
|
|
|
|
|
|
class CFileInfo {
|
|
public:
|
|
CListNode fi_lnNode;
|
|
CTFileName fi_fnFile;
|
|
CTString fi_strName;
|
|
};
|
|
|
|
|
|
#endif /* include-once check. */ |