16 lines
237 B
C++
16 lines
237 B
C++
#pragma once
|
|
|
|
#include <fesa/core/vec3.hpp>
|
|
#include <fesa/model/entity_origin.hpp>
|
|
#include <fesa/model/ids.hpp>
|
|
|
|
namespace fesa {
|
|
|
|
struct Node final {
|
|
NodeId id;
|
|
EntityOrigin origin;
|
|
Vec3 position;
|
|
};
|
|
|
|
} // namespace fesa
|