mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
10 lines
115 B
C
10 lines
115 B
C
#pragma once
|
|
#include "pch.h"
|
|
|
|
enum class MemoryType;
|
|
|
|
struct AddressInfo
|
|
{
|
|
int32_t Address;
|
|
MemoryType Type;
|
|
};
|