mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-17 12:41:39 +00:00
17 lines
174 B
C++
17 lines
174 B
C++
#pragma once
|
|
#include <Windows.h>
|
|
#include "Vec3f.h"
|
|
|
|
using namespace DataTypes;
|
|
|
|
namespace DTO
|
|
{
|
|
|
|
class DeathSwapDTO
|
|
{
|
|
public:
|
|
byte Phase = 0;
|
|
Vec3f Position;
|
|
};
|
|
|
|
} |