Skip to content

Commit

Permalink
aspects removed
Browse files Browse the repository at this point in the history
  • Loading branch information
erkerkiii committed Jan 5, 2023
1 parent d12fa87 commit ef40862
Showing 1 changed file with 0 additions and 45 deletions.
45 changes: 0 additions & 45 deletions Gum.Composer/Generated/Aspects.cs
Original file line number Diff line number Diff line change
@@ -1,45 +0,0 @@
namespace Gum.Composer.Generated
{
public readonly struct ScoreAspect : IAspect
{
public const AspectType ASPECT_TYPE = AspectType.Score;

public AspectType Type => ASPECT_TYPE;

public readonly int Score;

public ScoreAspect(int arg0)
{

Score = arg0;
}
}
public readonly struct IdAspect : IAspect
{
public const AspectType ASPECT_TYPE = AspectType.Id;

public AspectType Type => ASPECT_TYPE;

public readonly int Id;

public IdAspect(int arg0)
{

Id = arg0;
}
}
public readonly struct NameAspect : IAspect
{
public const AspectType ASPECT_TYPE = AspectType.Name;

public AspectType Type => ASPECT_TYPE;

public readonly string Name;

public NameAspect(string arg0)
{

Name = arg0;
}
}
}

0 comments on commit ef40862

Please sign in to comment.