| D:\ValheimDev\Dumps\Old\assembly_valheim\RoomPrefabData.cs | Untitled right | ||
|---|---|---|---|
| . | using System; |
|
|
|
|
||
[Serializable] |
|
||
public struct RoomPrefabData |
|
||
{ |
|
||
public RoomPrefabData(Room.Theme theme, bool enabled) |
|
||
{ |
|
||
this.m_theme = theme; |
|
||
this.m_enabled = enabled; |
|
||
} |
|
||
|
|
||
[BitMask(typeof(Room.Theme))] |
|
||
public Room.Theme m_theme; |
|
||
|
|
||
public bool m_enabled; |
|
||
} |
|
||
|
|
||