mirror of
https://github.com/love2d/megasource.git
synced 2026-08-17 19:24:09 +02:00
15 lines
151 B
C
15 lines
151 B
C
// Property.h
|
|
|
|
#ifndef __PROPERTY_H
|
|
#define __PROPERTY_H
|
|
|
|
#include "Common/MyString.h"
|
|
|
|
struct CProperty
|
|
{
|
|
UString Name;
|
|
UString Value;
|
|
};
|
|
|
|
#endif
|