Skip to content

Commit

Permalink
change crlf to lf
Browse files Browse the repository at this point in the history
  • Loading branch information
teshiba committed Mar 26, 2020
1 parent b6f0947 commit fdf6fcc
Show file tree
Hide file tree
Showing 73 changed files with 2,687 additions and 2,687 deletions.
4 changes: 2 additions & 2 deletions LibAoe2AISharp/Framework/Ages/AgeStateCollection.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using LibAoe2AISharp.Specifications;

using LibAoe2AISharp.Specifications;

namespace LibAoe2AISharp.Framework
{
/// <summary>
Expand Down
40 changes: 20 additions & 20 deletions LibAoe2AISharp/Framework/Ages/EnterAge.cs
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
using LibAoe2AISharp.Specifications;
using static LibAoe2AISharp.Framework.AgeStateCollection;

namespace LibAoe2AISharp.Framework
{
/// <summary>
/// Basic control after reserching the age.
/// </summary>
public abstract class EnterAge : defrule
{
/// <summary>
/// Initializes a new instance of the <see cref="EnterAge"/> class.
/// </summary>
protected EnterAge()
{
Actions.Add(
new set_goal(AgeState, Transitioned),
new disable_self());
}
}
using LibAoe2AISharp.Specifications;
using static LibAoe2AISharp.Framework.AgeStateCollection;

namespace LibAoe2AISharp.Framework
{
/// <summary>
/// Basic control after reserching the age.
/// </summary>
public abstract class EnterAge : defrule
{
/// <summary>
/// Initializes a new instance of the <see cref="EnterAge"/> class.
/// </summary>
protected EnterAge()
{
Actions.Add(
new set_goal(AgeState, Transitioned),
new disable_self());
}
}
}
82 changes: 41 additions & 41 deletions LibAoe2AISharp/Framework/Ages/ResearchState.cs
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
namespace LibAoe2AISharp.Framework
{
/// <summary>
/// research state.
/// </summary>
public enum ResearchState
{
/// <summary>
/// Research finished.
/// </summary>
Finished,

/// <summary>
/// Researching.
/// </summary>
Researching,

/// <summary>
/// Not researching now.
/// </summary>
NotResearching,
}

/// <summary>
/// valid wall perimeter.
/// <para>
/// 1 is closer to the Town Center than 2.
/// </para>
/// </summary>
public enum Perimeter
{
/// <summary>
/// Perimeter 1 is usually between 10 and 20 tiles from the starting Town Center.
/// </summary>
Near = 1,

/// <summary>
/// Perimeter 2 is usually between 18 and 30 tiles from the starting Town Center.
/// </summary>
Far = 2,
}
namespace LibAoe2AISharp.Framework
{
/// <summary>
/// research state.
/// </summary>
public enum ResearchState
{
/// <summary>
/// Research finished.
/// </summary>
Finished,

/// <summary>
/// Researching.
/// </summary>
Researching,

/// <summary>
/// Not researching now.
/// </summary>
NotResearching,
}

/// <summary>
/// valid wall perimeter.
/// <para>
/// 1 is closer to the Town Center than 2.
/// </para>
/// </summary>
public enum Perimeter
{
/// <summary>
/// Perimeter 1 is usually between 10 and 20 tiles from the starting Town Center.
/// </summary>
Near = 1,

/// <summary>
/// Perimeter 2 is usually between 18 and 30 tiles from the starting Town Center.
/// </summary>
Far = 2,
}
}
Loading

0 comments on commit fdf6fcc

Please sign in to comment.