20 lines
369 B
C#
20 lines
369 B
C#
public class Define
|
|
{
|
|
public static string[] sp_rod_card =
|
|
{
|
|
"sp_rod_card_blue",
|
|
"sp_rod_card_blue",
|
|
"sp_rod_card_purple",
|
|
"sp_rod_card_yellow",
|
|
};
|
|
}
|
|
|
|
//钓鱼结果
|
|
public enum FishingResult
|
|
{
|
|
Success = 1,
|
|
Fail1 = 4,//张力过大
|
|
Fail2 = 3,//张力过小
|
|
Fail3 = 2,//鱼逃跑
|
|
Fail4 = 5,//没点刺鱼
|
|
} |