31 lines
378 B
C++
31 lines
378 B
C++
#pragma once
|
|
|
|
#include<hgl/type/String.h>
|
|
|
|
namespace hgl::asset
|
|
{
|
|
/**
|
|
* 资产位置枚举
|
|
*/
|
|
enum class Location
|
|
{
|
|
Asset=0,
|
|
Engine,
|
|
PlugIn,
|
|
ExtPack,
|
|
OS,
|
|
};//
|
|
|
|
/**
|
|
* 资产路径
|
|
* @see doc/AssetPath.md
|
|
*/
|
|
class AssetPath
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
};//class AssetPath
|
|
}//namespace hgl::asset
|