mirror of
https://github.com/devZoGok/vb01.git
synced 2026-08-26 19:43:30 +00:00
15 lines
177 B
C++
15 lines
177 B
C++
#ifndef MODEL_ASSET_H
|
|
#define MODEL_ASSET_H
|
|
|
|
#include "asset.h"
|
|
|
|
namespace vb01{
|
|
class Node;
|
|
|
|
struct ModelAsset : public Asset{
|
|
Node *rootNode = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif
|