1 /*---------------------------------------------------------------------------* 2 Project: NintendoWare 3 File: anim_ResRevision.h 4 5 Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc. All rights reserved. 6 7 These coded instructions, statements, and computer programs contain proprietary 8 information of Nintendo and/or its licensed developers and are protected by 9 national and international copyright laws. They may not be disclosed to third 10 parties or copied or duplicated in any form, in whole or in part, without the 11 prior written consent of Nintendo. 12 13 The content herein is highly confidential and should be handled accordingly. 14 15 $Revision: $ 16 *---------------------------------------------------------------------------*/ 17 18 #ifndef NW_ANIM_RESREVISION_H_ 19 #define NW_ANIM_RESREVISION_H_ 20 21 #include <nw/types.h> 22 23 namespace nw { 24 namespace anim { 25 namespace res { 26 27 //! @details :private 28 enum AnimationBinaryRevisions 29 { 30 REVISION_RES_ANIM_DATA = 0x07000000 // ResAnim のバイナリリビジョンです。 31 }; 32 33 } /* namespcae res */ 34 } /* namespace anim */ 35 } /* namespace nw */ 36 37 #endif /* NW_ANIM_RESREVISION_H_ */ 38