mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-02-19 01:30:29 +00:00
15 lines
383 B
C#
15 lines
383 B
C#
// <copyright file="LcdStatusModeEventArgs.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace EightBit.GameBoy
|
|
{
|
|
using System;
|
|
|
|
public class LcdStatusModeEventArgs : EventArgs
|
|
{
|
|
public LcdStatusModeEventArgs(LcdStatusMode value) => this.Mode = value;
|
|
|
|
public LcdStatusMode Mode { get; }
|
|
}
|
|
}
|