diff --git a/src/Bridge/Field.cs b/src/Bridge/Field.cs index 2f30ae07..8b7626bc 100644 --- a/src/Bridge/Field.cs +++ b/src/Bridge/Field.cs @@ -1,5 +1,3 @@ -using System; - namespace Cxxi { /// @@ -7,6 +5,10 @@ namespace Cxxi /// public class Field : Declaration { + public Type Type; + public AccessSpecifier Access; + public uint Offset = 0; + public Field() { } @@ -17,8 +19,5 @@ namespace Cxxi Type = type; Access = access; } - - public Type Type { get; set; } - public AccessSpecifier Access { get; set; } } } \ No newline at end of file