8 lines
93 B
C
8 lines
93 B
C
#pragma once
|
|
|
|
struct Item {
|
|
const char* m_Name;
|
|
const char* m_ID;
|
|
const float m_Price;
|
|
};
|