3 hours later

This commit is contained in:
Simon Holmberg
2012-09-28 18:59:47 +02:00
parent adfdf963d8
commit cf100c95f1
16 changed files with 1672 additions and 10 deletions
+24
View File
@@ -0,0 +1,24 @@
//
// 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
}
}