mirror of
https://github.com/pleonex/NitroDebugger.git
synced 2025-06-18 21:25:42 -04:00
50 lines
1.3 KiB
C#
50 lines
1.3 KiB
C#
//
|
|
// DataStructure.cs
|
|
//
|
|
// Author:
|
|
// Benito Palacios Sánchez <benito356@gmail.com>
|
|
//
|
|
// Copyright (c) 2015 Benito Palacios Sánchez
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
using System;
|
|
<<<<<<< HEAD
|
|
=======
|
|
using NitroDebugger.RSP;
|
|
>>>>>>> b5ae7a8363aa0a20313b9282169aa29958270da8
|
|
|
|
namespace NitroDebugger
|
|
{
|
|
public abstract class DataStructure
|
|
{
|
|
public abstract void Read();
|
|
public abstract void Write();
|
|
}
|
|
|
|
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]
|
|
public class DataDescription : Attribute
|
|
{
|
|
public DataDescription(string description)
|
|
{
|
|
Description = description;
|
|
}
|
|
|
|
public string Description {
|
|
get;
|
|
private set;
|
|
}
|
|
}
|
|
}
|
|
|