mirror of
https://github.com/MoleskiCoder/EightBitNet.git
synced 2025-01-08 16:31:38 +00:00
3eb3975e37
Signed-off-by: Adrian Conlon <Adrian.conlon@gmail.com>
17 lines
439 B
C#
17 lines
439 B
C#
// <copyright file="LcdcControl.cs" company="Adrian Conlon">
|
|
// Copyright (c) Adrian Conlon. All rights reserved.
|
|
// </copyright>
|
|
namespace EightBit
|
|
{
|
|
namespace GameBoy
|
|
{
|
|
using System;
|
|
|
|
public class LcdStatusModeEventArgs : EventArgs
|
|
{
|
|
public LcdStatusModeEventArgs(LcdStatusMode value) => this.LcdStatusMode = value;
|
|
|
|
public LcdStatusMode LcdStatusMode { get; }
|
|
}
|
|
}
|
|
} |