Files
depthsbelow/AStar/AuthorAttribute.cs
T
Simon Holmberg cf100c95f1 3 hours later
2012-09-28 18:59:47 +02:00

25 lines
606 B
C#
Executable File

//
// THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY
// KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR
// PURPOSE. IT CAN BE DISTRIBUTED FREE OF CHARGE AS LONG AS THIS HEADER
// REMAINS UNCHANGED.
//
// Email: gustavo_franco@hotmail.com
//
// Copyright (C) 2006 Franco, Gustavo
//
using System;
namespace AStar
{
internal class AuthorAttribute : Attribute
{
#region Constructors
public AuthorAttribute(string authorName)
{
}
#endregion
}
}