This repository has been archived by the owner on Sep 16, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tweak invalid solid numbers to closer match VHE
Fixes #275 (maybe?)
- Loading branch information
1 parent
a9cb138
commit 70e55a7
Showing
9 changed files
with
111 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using System.Collections.Generic; | ||
using Sledge.BspEditor.Primitives; | ||
|
||
namespace Sledge.BspEditor.Providers | ||
{ | ||
public class BspFileLoadResult | ||
{ | ||
/// <summary> | ||
/// A list of messages to present to the user after loading the file | ||
/// </summary> | ||
public List<string> Messages { get; set; } | ||
|
||
/// <summary> | ||
/// A list of invalid objects that were present in the file | ||
/// </summary> | ||
public List<object> InvalidObjects { get; set; } | ||
|
||
/// <summary> | ||
/// The map that was loaded from the file. If the load wasn't successful, this should be null. | ||
/// </summary> | ||
public Map Map { get; set; } | ||
|
||
public BspFileLoadResult() | ||
{ | ||
Messages = new List<string>(); | ||
InvalidObjects = new List<object>(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters