mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 12:11:01 +00:00
13 lines
135 B
C++
13 lines
135 B
C++
#pragma once
|
|
#include "Vec3f.h"
|
|
|
|
using namespace DataTypes;
|
|
|
|
namespace DTO
|
|
{
|
|
class TeleportDTO
|
|
{
|
|
public:
|
|
Vec3f Destination;
|
|
};
|
|
} |