mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-24 05:37:53 -05:00
9 lines
107 B
C++
9 lines
107 B
C++
#pragma once
|
|
#include <string>
|
|
|
|
class XAssetDependency
|
|
{
|
|
public:
|
|
int m_type;
|
|
std::string m_name;
|
|
}; |