More code sanity changes (constructors of abstract classes should not be public or internal).

This commit is contained in:
MaxED 2015-05-27 12:38:03 +00:00
parent 1d988b087c
commit 1b9f94f3f7
23 changed files with 68 additions and 87 deletions

View file

@ -61,7 +61,7 @@ namespace CodeImp.DoomBuilder.Data
#region ================== Constructor / Disposer
// Constructor
public PK3StructuredReader(DataLocation dl) : base(dl)
protected PK3StructuredReader(DataLocation dl) : base(dl)
{
// Initialize
this.roottextures = dl.option1;