DotNet script changes transform

This commit is contained in:
Simon Lübeß
2022-04-27 23:58:50 +02:00
parent 2bac6a8d05
commit 63b9270710
11 changed files with 444 additions and 22 deletions
@@ -0,0 +1,14 @@
namespace DotNetScriptingHelper;
public interface IGameComponent
{
static int I { get; }
}
public class GameComponentAttribute : Attribute
{
public GameComponentAttribute()
{
}
}