mirror of
https://github.com/MilkBarModding/MilkBarLauncher.git
synced 2025-06-16 20:20:56 +00:00
18 lines
177 B
C++
18 lines
177 B
C++
#pragma once
|
|
#include "Vec3f.h"
|
|
|
|
using namespace DataTypes;
|
|
|
|
namespace DTO
|
|
{
|
|
|
|
class BombDTO
|
|
{
|
|
public:
|
|
Vec3f Bomb;
|
|
Vec3f Bomb2;
|
|
Vec3f BombCube;
|
|
Vec3f BombCube2;
|
|
};
|
|
|
|
} |