blob: 55b551d492d5f954b06adc4db2b2a6d2ef0fb1df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#pragma once
#include "persistence.h"
class AssImp : public Persistence::Persistable {
public:
using Ptr = std::shared_ptr<AssImp>;
void postLoad() override;
bool persist(Persistence::PersistenceStore & store) override;
std::string path;
};
|