10 lines
94 B
C++
10 lines
94 B
C++
#pragma once
|
|
#include "Item.h"
|
|
|
|
namespace MbD {
|
|
class CartesianFrame : public Item
|
|
{
|
|
};
|
|
}
|
|
|