mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
|
/*
|
||
|
OpenMW - The completely unofficial reimplementation of Morrowind
|
||
|
Copyright (C) 2008-2010 Nicolay Korslund
|
||
|
Email: < korslund@gmail.com >
|
||
|
WWW: http://openmw.sourceforge.net/
|
||
|
|
||
|
This file (node.h) is part of the OpenMW package.
|
||
|
|
||
|
OpenMW is distributed as free software: you can redistribute it
|
||
|
and/or modify it under the terms of the GNU General Public License
|
||
|
version 3, as published by the Free Software Foundation.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful, but
|
||
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
version 3 along with this program. If not, see
|
||
|
http://www.gnu.org/licenses/ .
|
||
|
|
||
|
*/
|
||
|
|
||
|
#ifndef _NIF_NODE_H_
|
||
|
#define _NIF_NODE_H_
|
||
|
|
||
|
#include "controlled.h"
|
||
|
|
||
|
namespace Nif
|
||
|
{
|
||
|
|
||
|
/** A Node is an object that's part of the main NIF tree. It has
|
||
|
parent node (unless it's the root), and transformation (location
|
||
|
and rotation) relative to it's parent.
|
||
|
*/
|
||
|
struct Node : Named
|
||
|
{
|
||
|
// Not done
|
||
|
|
||
|
void read(NIFFile *nif)
|
||
|
{
|
||
|
Named::read(nif);
|
||
|
}
|
||
|
};
|
||
|
|
||
|
} // Namespace
|
||
|
#endif
|