mirror of
				https://github.com/MoleskiCoder/EightBitNet.git
				synced 2025-11-03 16:16:45 +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; }
 | 
						|
    }
 | 
						|
}
 |