mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: PCH for client_sheets
This commit is contained in:
parent
b0af47cd3a
commit
3b835a5407
8 changed files with 18 additions and 13 deletions
|
@ -14,8 +14,6 @@
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef CL_ATTACK_ID_H
|
#ifndef CL_ATTACK_ID_H
|
||||||
#define CL_ATTACK_ID_H
|
#define CL_ATTACK_ID_H
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include "stdpch.h"
|
#include "stdpch.h"
|
||||||
//
|
//
|
||||||
#include "body_to_bone_sheet.h"
|
#include "body_to_bone_sheet.h"
|
||||||
|
#include "client_sheets.h"
|
||||||
//
|
//
|
||||||
#include "nel/georges/u_form_elm.h"
|
#include "nel/georges/u_form_elm.h"
|
||||||
|
|
||||||
|
|
|
@ -21,6 +21,8 @@
|
||||||
|
|
||||||
#include "game_share/body.h"
|
#include "game_share/body.h"
|
||||||
|
|
||||||
|
#include <nel/misc/string_mapper.h>
|
||||||
|
|
||||||
namespace NLGEORGES
|
namespace NLGEORGES
|
||||||
{
|
{
|
||||||
class UFormElm;
|
class UFormElm;
|
||||||
|
|
|
@ -14,11 +14,10 @@
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef RY_FACTION_SHEET_H
|
#ifndef RY_FACTION_SHEET_H
|
||||||
#define RY_FACTION_SHEET_H
|
#define RY_FACTION_SHEET_H
|
||||||
|
|
||||||
|
#include "entity_sheet.h"
|
||||||
|
|
||||||
/** Sheet of a faction
|
/** Sheet of a faction
|
||||||
* NB : it doesn't derives from CEntitySheet, because its instances are aggragated in a CContinentSheet
|
* NB : it doesn't derives from CEntitySheet, because its instances are aggragated in a CContinentSheet
|
||||||
|
|
|
@ -14,10 +14,10 @@
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#include "stdpch.h"
|
#include "stdpch.h"
|
||||||
#include "item_fx_sheet.h"
|
#include "item_fx_sheet.h"
|
||||||
|
#include "client_sheets.h"
|
||||||
|
|
||||||
#include "nel/georges/u_form_elm.h"
|
#include "nel/georges/u_form_elm.h"
|
||||||
|
|
||||||
// *******************************************************************************************
|
// *******************************************************************************************
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#define RY_OUTPOST_BUILDING_H
|
#define RY_OUTPOST_BUILDING_H
|
||||||
|
|
||||||
#include "entity_sheet.h"
|
#include "entity_sheet.h"
|
||||||
|
#include "client_sheets.h"
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Outpost building definition for client side management (buy building upgrades ...)
|
* Outpost building definition for client side management (buy building upgrades ...)
|
||||||
|
|
|
@ -14,7 +14,8 @@
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include <nel/misc/types_nl.h>
|
#ifndef CL_STDPCH_H
|
||||||
|
#define CL_STDPCH_H
|
||||||
|
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
@ -33,15 +34,21 @@
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <deque>
|
#include <deque>
|
||||||
|
|
||||||
|
#include <nel/misc/types_nl.h>
|
||||||
#include <nel/misc/common.h>
|
#include <nel/misc/common.h>
|
||||||
#include <nel/misc/debug.h>
|
#include <nel/misc/debug.h>
|
||||||
|
|
||||||
#include <nel/misc/stream.h>
|
#include <nel/misc/stream.h>
|
||||||
#include <nel/misc/time_nl.h>
|
#include <nel/misc/time_nl.h>
|
||||||
#include <nel/misc/vector.h>
|
#include <nel/misc/vector.h>
|
||||||
#include <nel/misc/matrix.h>
|
#include <nel/misc/matrix.h>
|
||||||
#include <nel/misc/rgba.h>
|
#include <nel/misc/rgba.h>
|
||||||
#include <nel/misc/sheet_id.h>
|
#include <nel/misc/sheet_id.h>
|
||||||
|
#include <nel/misc/smart_ptr.h>
|
||||||
|
#include <nel/misc/string_mapper.h>
|
||||||
|
|
||||||
#include "client_sheets.h"
|
#include <nel/georges/u_form_elm.h>
|
||||||
#include "entity_sheet.h"
|
#include <nel/georges/u_form.h>
|
||||||
|
#include <nel/georges/u_form_loader.h>
|
||||||
|
#include <nel/georges/u_form_dfn.h>
|
||||||
|
|
||||||
|
#endif
|
||||||
|
|
|
@ -14,8 +14,6 @@
|
||||||
// You should have received a copy of the GNU Affero General Public License
|
// You should have received a copy of the GNU Affero General Public License
|
||||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifndef CL_TEXT_EMOT_LIST_SHEET_H
|
#ifndef CL_TEXT_EMOT_LIST_SHEET_H
|
||||||
#define CL_TEXT_EMOT_LIST_SHEET_H
|
#define CL_TEXT_EMOT_LIST_SHEET_H
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue