From 1469b2f88edf94a97c8fae2c44eec6a1c6a31919 Mon Sep 17 00:00:00 2001 From: Amorilia <amorilia@users.sourceforge.net> Date: Wed, 29 Jun 2011 16:12:54 +0100 Subject: [PATCH] Move internal_block_number to custom code so it's not overwritten by the generator. --- include/obj/NiObject.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/include/obj/NiObject.h b/include/obj/NiObject.h index f18fd59d..f10c462f 100644 --- a/include/obj/NiObject.h +++ b/include/obj/NiObject.h @@ -78,6 +78,11 @@ public: */ NIFLIB_API Ref<NiObject> Clone( unsigned int version = 0xFFFFFFFF, unsigned int user_version = 0 ); +public: + /*! Block number in the nif file. Only set when you read + blocks from the file. */ + int internal_block_number; + //--END CUSTOM CODE--// public: /*! NIFLIB_HIDDEN function. For internal use only. */ @@ -88,10 +93,6 @@ public: NIFLIB_HIDDEN virtual void FixLinks( const map<unsigned int,NiObjectRef> & objects, list<unsigned int> & link_stack, const NifInfo & info ); /*! NIFLIB_HIDDEN function. For internal use only. */ NIFLIB_HIDDEN virtual list<NiObjectRef> GetRefs() const; - - /*! Block number in the nif file. Only set when you read - blocks from the file. */ - int internal_block_number; }; //--BEGIN FILE FOOT CUSTOM CODE--// -- GitLab