forked from WolvenKit/WolvenKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- implemented enum flags editing
- Loading branch information
Showing
25 changed files
with
481 additions
and
483 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
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
28 changes: 28 additions & 0 deletions
28
WolvenKit.CR2W/Types/BufferedTypes/BufferStructs/SUmbraTileData.cs
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,28 @@ | ||
using System.Collections.Generic; | ||
using System.IO; | ||
using WolvenKit.CR2W.Editors; | ||
using System.Diagnostics; | ||
using System.Runtime.Serialization; | ||
using static WolvenKit.CR2W.Types.Enums; | ||
using WolvenKit.CR2W.Reflection; | ||
using FastMember; | ||
|
||
namespace WolvenKit.CR2W.Types | ||
{ | ||
[REDMeta(EREDMetaInfo.REDStruct)] | ||
public class SUmbraTileData : CVariable | ||
{ | ||
[Ordinal(1000)] [REDBuffer] public CUInt64 Hash { get; set; } | ||
[Ordinal(1001)] [REDBuffer] public CUInt16 Index { get; set; } | ||
[Ordinal(1001)] [REDBuffer] public CUInt8 Flag1 { get; set; } | ||
[Ordinal(1001)] [REDBuffer] public CUInt8 Flag2 { get; set; } | ||
|
||
public SUmbraTileData(CR2WFile cr2w, CVariable parent, string name) : | ||
base(cr2w, parent, name) | ||
{ | ||
|
||
} | ||
|
||
|
||
} | ||
} |
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
File renamed without changes.
Oops, something went wrong.