Merge pull request #20707 from aaronfranke/mono-combine

[Mono] Move several related small files
This commit is contained in:
Ignacio Etcheverry 2018-08-24 15:53:38 +02:00 committed by GitHub
commit 750f128a05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 48 additions and 50 deletions

View File

@ -0,0 +1,17 @@
using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class ExportAttribute : Attribute
{
private PropertyHint hint;
private string hintString;
public ExportAttribute(PropertyHint hint = PropertyHint.None, string hintString = "")
{
this.hint = hint;
this.hintString = hintString;
}
}
}

View File

@ -0,0 +1,7 @@
using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Class)]
public class ToolAttribute : Attribute {}
}

View File

@ -1,17 +0,0 @@
using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Field | AttributeTargets.Property)]
public class ExportAttribute : Attribute
{
private PropertyHint hint;
private string hintString;
public ExportAttribute(PropertyHint hint = PropertyHint.None, string hintString = "")
{
this.hint = hint;
this.hintString = hintString;
}
}
}

View File

@ -1,18 +0,0 @@
using System.Runtime.CompilerServices;
namespace Godot
{
public interface IAwaiter : INotifyCompletion
{
bool IsCompleted { get; }
void GetResult();
}
public interface IAwaiter<out TResult> : INotifyCompletion
{
bool IsCompleted { get; }
TResult GetResult();
}
}

View File

@ -0,0 +1,18 @@
using System.Runtime.CompilerServices;
namespace Godot
{
public interface IAwaiter : INotifyCompletion
{
bool IsCompleted { get; }
void GetResult();
}
public interface IAwaiter<out TResult> : INotifyCompletion
{
bool IsCompleted { get; }
TResult GetResult();
}
}

View File

@ -1,5 +1,3 @@
//using System;
using System;
using System.Collections.Generic;
using System.Globalization;

View File

@ -1,7 +0,0 @@
using System;
namespace Godot
{
[AttributeUsage(AttributeTargets.Class)]
public class ToolAttribute : Attribute {}
}