44 lines
4.9 KiB
C#
44 lines
4.9 KiB
C#
using UnityEngine;
|
|
public static class AssetConst
|
|
{
|
|
public const string Assets_DemoGame_GameRes_AssetsConstTemplate_txt = @"Assets/DemoGame/GameRes/AssetsConstTemplate.txt";
|
|
public const string Assets_DemoGame_GameRes_ConfigConstTemplate_txt = @"Assets/DemoGame/GameRes/ConfigConstTemplate.txt";
|
|
public const string Assets_DemoGame_GameRes_ExcelConstTemplate_txt = @"Assets/DemoGame/GameRes/ExcelConstTemplate.txt";
|
|
public const string Assets_DemoGame_GameRes_ExcelManagerTemplate_txt = @"Assets/DemoGame/GameRes/ExcelManagerTemplate.txt";
|
|
public const string Assets_DemoGame_GameRes_ExcelTemplate_txt = @"Assets/DemoGame/GameRes/ExcelTemplate.txt";
|
|
public const string Assets_DemoGame_GameRes_Audio_music_background_wav = @"Assets/DemoGame/GameRes/Audio/music_background.wav";
|
|
public const string Assets_DemoGame_GameRes_Audio_sound_explosion_asteroid_wav = @"Assets/DemoGame/GameRes/Audio/sound_explosion_asteroid.wav";
|
|
public const string Assets_DemoGame_GameRes_Audio_sound_explosion_enemy_wav = @"Assets/DemoGame/GameRes/Audio/sound_explosion_enemy.wav";
|
|
public const string Assets_DemoGame_GameRes_Audio_sound_explosion_player_wav = @"Assets/DemoGame/GameRes/Audio/sound_explosion_player.wav";
|
|
public const string Assets_DemoGame_GameRes_Audio_sound_weapon_enemy_wav = @"Assets/DemoGame/GameRes/Audio/sound_weapon_enemy.wav";
|
|
public const string Assets_DemoGame_GameRes_Audio_sound_weapon_player_wav = @"Assets/DemoGame/GameRes/Audio/sound_weapon_player.wav";
|
|
public const string Assets_DemoGame_GameRes_Config_TaskListData_json = @"Assets/DemoGame/GameRes/Config/TaskListData.json";
|
|
public const string Assets_DemoGame_GameRes_Config_JSON_item_tbitem_json = @"Assets/DemoGame/GameRes/Config/JSON/item_tbitem.json";
|
|
public const string Assets_DemoGame_GameRes_Config_JSON_tbplayer_json = @"Assets/DemoGame/GameRes/Config/JSON/tbplayer.json";
|
|
public const string Assets_DemoGame_GameRes_Entity_Cube_prefab = @"Assets/DemoGame/GameRes/Entity/Cube.prefab";
|
|
public const string Assets_DemoGame_GameRes_Entity_Player_prefab = @"Assets/DemoGame/GameRes/Entity/Player.prefab";
|
|
public const string Assets_DemoGame_GameRes_Entity_目标区域_prefab = @"Assets/DemoGame/GameRes/Entity/目标区域.prefab";
|
|
public const string Assets_DemoGame_GameRes_Scene_ChouXueScene_unity = @"Assets/DemoGame/GameRes/Scene/ChouXueScene.unity";
|
|
public const string Assets_DemoGame_GameRes_Scene_Game_unity = @"Assets/DemoGame/GameRes/Scene/Game.unity";
|
|
public const string Assets_DemoGame_GameRes_Scene_HuShiTaiScene_unity = @"Assets/DemoGame/GameRes/Scene/HuShiTaiScene.unity";
|
|
public const string Assets_DemoGame_GameRes_Scene_LiaoTianScene_unity = @"Assets/DemoGame/GameRes/Scene/LiaoTianScene.unity";
|
|
public const string Assets_DemoGame_GameRes_Scene_MainScene_unity = @"Assets/DemoGame/GameRes/Scene/MainScene.unity";
|
|
public const string Assets_DemoGame_GameRes_TMPFont_huangkaihuaLawyerfont_ttf = @"Assets/DemoGame/GameRes/TMPFont/huangkaihuaLawyerfont.ttf";
|
|
public const string Assets_DemoGame_GameRes_TMPFont_huangkaihuaLawyerfont_2SDF_asset = @"Assets/DemoGame/GameRes/TMPFont/huangkaihuaLawyerfont_2SDF.asset";
|
|
public const string Assets_DemoGame_GameRes_TMPFont_QingNiaoHuaGuangJianMeiHei_ttf = @"Assets/DemoGame/GameRes/TMPFont/QingNiaoHuaGuangJianMeiHei.ttf";
|
|
public const string Assets_DemoGame_GameRes_TMPFont_QingNiaoHuaGuangJianMeiHei_2SDF_asset = @"Assets/DemoGame/GameRes/TMPFont/QingNiaoHuaGuangJianMeiHei_2SDF.asset";
|
|
public const string Assets_DemoGame_GameRes_UIImage_Space_jpg = @"Assets/DemoGame/GameRes/UIImage/Space.jpg";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIAnalysisReport_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIAnalysisReport.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIAnswer_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIAnswer.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIBasicInformation_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIBasicInformation.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIBigTips_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIBigTips.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIBlack_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIBlack.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIDialogue_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIDialogue.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIIntroduce_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIIntroduce.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UILoading_prefab = @"Assets/DemoGame/GameRes/UIPanel/UILoading.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIMain_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIMain.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIMinTips_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIMinTips.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UIModelDisplay_prefab = @"Assets/DemoGame/GameRes/UIPanel/UIModelDisplay.prefab";
|
|
public const string Assets_DemoGame_GameRes_UIPanel_UITaskList_prefab = @"Assets/DemoGame/GameRes/UIPanel/UITaskList.prefab";
|
|
|
|
} |