feat: add analysis model objects
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
#pragma once
|
||||
|
||||
#include "fesa/core/ModelTypes.hpp"
|
||||
|
||||
namespace fesa::material {
|
||||
|
||||
using fesa::core::MaterialId;
|
||||
|
||||
class Material {
|
||||
public:
|
||||
virtual ~Material() = default;
|
||||
|
||||
virtual MaterialId id() const noexcept = 0;
|
||||
};
|
||||
|
||||
} // namespace fesa::material
|
||||
Reference in New Issue
Block a user