Removed R from Container class

This commit is contained in:
2022-09-15 21:38:13 -07:00
parent 7390c13751
commit deff6f484c
18 changed files with 154 additions and 132 deletions

View File

@ -5,7 +5,6 @@ public interface IContainer
public int G { get; }
public List<Item> Items { get; }
public int R { get; }
public string SourceDirectory { get; }
}