mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-08 22:08:29 -05:00
19 lines
475 B
C++
19 lines
475 B
C++
#pragma once
|
|
|
|
#include "XModel/XModelCommon.h"
|
|
|
|
#include <vector>
|
|
|
|
class XModelWriter
|
|
{
|
|
public:
|
|
XModelWriter() = default;
|
|
virtual ~XModelWriter() = default;
|
|
XModelWriter(const XModelWriter& other) = default;
|
|
XModelWriter(XModelWriter&& other) noexcept = default;
|
|
XModelWriter& operator=(const XModelWriter& other) = default;
|
|
XModelWriter& operator=(XModelWriter&& other) noexcept = default;
|
|
|
|
virtual void Write(const XModelCommon& xmodel) = 0;
|
|
};
|