This repository was archived by the owner on Mar 1, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactoring, based on Visual Studio 2015
- Loading branch information
jxpxxzj
committed
Oct 3, 2015
1 parent
26b280e
commit 15cb2be
Showing
48 changed files
with
2,629 additions
and
2,367 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
2015/7/21: Wiki启用,不定期更新开发信息和游戏数据 | ||
|
||
此游戏为国产手游<战舰少女>的开源复刻版本,旨在为PC用户提供一个近似于移动端的用户体验和自由扩展游戏的空间. | ||
|
||
程序使用 **GPL v3** 作为开源协议,详见LICENSE文件. | ||
|
||
2015/7/21: Wiki启用,不定期更新开发信息和游戏数据 | ||
|
||
此游戏为国产手游<战舰少女>的开源复刻版本,旨在为PC用户提供一个近似于移动端的用户体验和自由扩展游戏的空间. | ||
|
||
程序使用 **GPL v3** 作为开源协议,详见LICENSE文件. | ||
|
||
贴吧地址:http://tieba.baidu.com/p/3872470837 |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,69 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WarshipGirl.Data | ||
{ | ||
class BaseEquipment | ||
{ | ||
/// <summary> | ||
/// 装备类型 | ||
/// </summary> | ||
public enum EquipmentType | ||
{ | ||
Cannon,Aircraft,Submarine,Others | ||
} | ||
|
||
/// <summary> | ||
/// 编号 | ||
/// </summary> | ||
public int ID { get; set; } | ||
/// <summary> | ||
/// 稀有度 | ||
/// </summary> | ||
public int Star { get; set; } | ||
/// <summary> | ||
/// 类型 | ||
/// </summary> | ||
public EquipmentType Type { get; set; } | ||
/// <summary> | ||
/// 火力 | ||
/// </summary> | ||
public int Fire { get; set; } | ||
/// <summary> | ||
/// 射程 | ||
/// </summary> | ||
public int Range { get; set; } | ||
/// <summary> | ||
/// 对空 | ||
/// </summary> | ||
public int Air { get; set; } | ||
/// <summary> | ||
/// 对潜 | ||
/// </summary> | ||
public int Submarine { get; set; } | ||
/// <summary> | ||
/// 命中 | ||
/// </summary> | ||
public int Accuracy { get; set; } | ||
/// <summary> | ||
/// 装甲 | ||
/// </summary> | ||
public int Protect { get; set; } | ||
/// <summary> | ||
/// 闪避 | ||
/// </summary> | ||
public int Evade { get; set; } | ||
/// <summary> | ||
/// 幸运 | ||
/// </summary> | ||
public int Fortune { get; set; } | ||
/// <summary> | ||
/// 索敌 | ||
/// </summary> | ||
public int Searching { get; set; } | ||
|
||
} | ||
} | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace WarshipGirl.Data | ||
{ | ||
class BaseEquipment | ||
{ | ||
/// <summary> | ||
/// 装备类型 | ||
/// </summary> | ||
public enum EquipmentType | ||
{ | ||
Cannon,Aircraft,Submarine,Others | ||
} | ||
|
||
/// <summary> | ||
/// 编号 | ||
/// </summary> | ||
public int ID { get; set; } | ||
/// <summary> | ||
/// 稀有度 | ||
/// </summary> | ||
public int Star { get; set; } | ||
/// <summary> | ||
/// 类型 | ||
/// </summary> | ||
public EquipmentType Type { get; set; } | ||
/// <summary> | ||
/// 火力 | ||
/// </summary> | ||
public int Fire { get; set; } | ||
/// <summary> | ||
/// 射程 | ||
/// </summary> | ||
public int Range { get; set; } | ||
/// <summary> | ||
/// 对空 | ||
/// </summary> | ||
public int Air { get; set; } | ||
/// <summary> | ||
/// 对潜 | ||
/// </summary> | ||
public int Submarine { get; set; } | ||
/// <summary> | ||
/// 命中 | ||
/// </summary> | ||
public int Accuracy { get; set; } | ||
/// <summary> | ||
/// 装甲 | ||
/// </summary> | ||
public int Protect { get; set; } | ||
/// <summary> | ||
/// 闪避 | ||
/// </summary> | ||
public int Evade { get; set; } | ||
/// <summary> | ||
/// 幸运 | ||
/// </summary> | ||
public int Fortune { get; set; } | ||
/// <summary> | ||
/// 索敌 | ||
/// </summary> | ||
public int Searching { get; set; } | ||
|
||
} | ||
} |
Oops, something went wrong.