[nostalgia] Change Claw type IDs to domain based namespaces

This commit is contained in:
2020-06-15 23:15:49 -05:00
parent 20f4d50ad6
commit f8fb458e32
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -28,14 +28,14 @@ using Color16 = uint16_t;
using Color32 = uint32_t;
struct NostalgiaPalette {
static constexpr auto TypeName = "nostalgia::core::NostalgiaPalette";
static constexpr auto TypeName = "net.drinkingtea.nostalgia.core.NostalgiaPalette";
static constexpr auto Fields = 1;
static constexpr auto TypeVersion = 1;
ox::Vector<Color16> colors;
};
struct NostalgiaGraphic {
static constexpr auto TypeName = "nostalgia::core::NostalgiaGraphic";
static constexpr auto TypeName = "net.drinkingtea.nostalgia.core.NostalgiaGraphic";
static constexpr auto Fields = 6;
static constexpr auto TypeVersion = 1;
int8_t bpp = 0;