-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresource.h
83 lines (67 loc) · 3.39 KB
/
resource.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#pragma once
#include "atlas.h"
#include "graphics.h"
namespace rs {
extern IMAGE img_menu_background;//主菜单背景
extern IMAGE img_VS;//VS 艺术字
extern IMAGE img_1P;//1P 文本
extern IMAGE img_2P;//2P 文本
extern IMAGE img_1P_desc;//1P 键位描述
extern IMAGE img_2P_desc;//2P 键位描述
extern IMAGE img_gravestone_left;//朝向左的墓碑
extern IMAGE img_gravestone_right;//朝向右的墓碑
extern IMAGE img_selector_tip;//选角界面提示信息文本
extern IMAGE img_selector_background;//选角界面背景图
extern IMAGE img_1P_selector_btn_idle_left;//1P 向左选择按钮默认状态
extern IMAGE img_1P_selector_btn_idle_right;//1P 向右选择按钮默认状态
extern IMAGE img_1P_selector_btn_down_left;//1P 向左选择按钮按下状态
extern IMAGE img_1P_selector_btn_down_right;//1P 向右选择按钮按下状态
extern IMAGE img_2P_selector_btn_idle_left;//2P 向左选择按钮默认状态
extern IMAGE img_2P_selector_btn_idle_right;//2P 向右选择按钮默认状态
extern IMAGE img_2P_selector_btn_down_left;//2P 向左选择按钮按下状态
extern IMAGE img_2P_selector_btn_down_right;//2P 向右选择按钮按下状态
extern IMAGE img_peashooter_selector_background_left;//选角界面朝向左的婉逗射手
extern IMAGE img_peashooter_selector_background_right;//选角界面朝向右的婉逗射手
extern IMAGE img_sunflower_selector_background_left;//选角界面朝向左的龙日葵
extern IMAGE img_sunflower_selector_background_right;//选角界面朝向右的龙日葵
extern IMAGE img_sky;//天空
extern IMAGE img_hills;//山脉
extern IMAGE img_platform_large;//大型平台
extern IMAGE img_platform_small;//小型平台
extern IMAGE img_1P_cursor;//1P 指示光标
extern IMAGE img_2P_cursor;//2P 指示光标
extern IMAGE img_1P_winner;//1P 获胜文本图片
extern IMAGE img_2P_winner;//2P 获胜文本图片
extern IMAGE img_winner_bar;//获胜玩家文本背景图片
extern IMAGE img_avatar_peashooter;//婉逗射手头像图片
extern IMAGE img_avatar_sunflower;//龙日葵头像图片
// 婉逗射手图集
extern Atlas atlas_peashooter_idle_left;//朝向左的默认动画
extern Atlas atlas_peashooter_idle_right;//朝向右的默认动画
extern Atlas atlas_peashooter_run_left;//朝向左的奔跑动画
extern Atlas atlas_peashooter_run_right;//朝向右的奔跑动画
extern Atlas atlas_peashooter_attack_ex_left;//朝向左的特殊攻击动画
extern Atlas atlas_peashooter_attack_ex_right;//朝向右的特殊攻击动画
extern Atlas atlas_peashooter_die_left;//朝向左的死亡动画
extern Atlas atlas_peashooter_die_right;//朝向右的死亡动画
//龙日葵图集
extern Atlas atlas_sunflower_idle_left;//朝向左的默认动画
extern Atlas atlas_sunflower_idle_right;//朝向右的默认动画
extern Atlas atlas_sunflower_run_left;//朝向左的奔跑动画
extern Atlas atlas_sunflower_run_right;//朝向右的奔跑动画
extern Atlas atlas_sunflower_attack_ex_left;//朝向左的特殊攻击动画
extern Atlas atlas_sunflower_attack_ex_right;//朝向右的特殊攻击动画
extern Atlas atlas_sunflower_die_left;//朝向左的死亡动画
extern Atlas atlas_sunflower_die_right;//朝向右的死亡动画
extern IMAGE img_pea;//婉逗图片
extern Atlas atlas_pea_break;//婉逗破碎动画图集
extern Atlas atlas_sun;//日光动画图集
extern Atlas atlas_sun_explode;//日光爆炸动画图集
extern Atlas atlas_sun_ex;//特殊日光动画图集
extern Atlas atlas_sun_ex_explode;//特殊日光爆炸动画图集
extern Atlas atlas_sun_text;//"日"文本动画图集
extern Atlas atlas_run_effect;//奔跑特效动画图集
extern Atlas atlas_jump_effect;//跳跃特效动画图集
extern Atlas atlas_land_effect;
void load_game_resources();
}