21 lines
571 B
C#
21 lines
571 B
C#
namespace ZelWiki.Engine.Function
|
|
{
|
|
public class FunctionPrototype
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
public FunctionPrototype()
|
|
{
|
|
FunctionPrefix = string.Empty;
|
|
ProperName = string.Empty;
|
|
FunctionName = string.Empty;
|
|
Parameters = new();
|
|
}
|
|
public string FunctionPrefix { get; set; }
|
|
public string ProperName { get; set; }
|
|
public string FunctionName { get; set; }
|
|
public List<PrototypeParameter> Parameters { get; set; }
|
|
}
|
|
}
|