CommonLibSSE NG
FileID.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
5  namespace BSResource
6  {
7  struct FileID
8  {
9  public:
10  // members
11  std::uint32_t file{ 0 }; // 0
12  char ext[4]{ 0 }; // 0
13  };
14  static_assert(sizeof(FileID) == 0x8);
15  }
16 }
Definition: AbsorbEffect.h:6
Definition: FileID.h:8
char ext[4]
Definition: FileID.h:12
std::uint32_t file
Definition: FileID.h:11