mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
15 lines
201 B
C#
15 lines
201 B
C#
namespace DotNetScriptingHelper;
|
|
|
|
public interface IGameComponent
|
|
{
|
|
static int I { get; }
|
|
}
|
|
|
|
public class GameComponentAttribute : Attribute
|
|
{
|
|
public GameComponentAttribute()
|
|
{
|
|
|
|
}
|
|
}
|