mirror of
				https://github.com/MoleskiCoder/EightBitNet.git
				synced 2025-11-04 07:16:02 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			263 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			263 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace EightBit
 | 
						|
{
 | 
						|
    public class ProfileLineEventArgs(string source, int cycles, int count) : EventArgs
 | 
						|
    {
 | 
						|
        public string Source { get; } = source;
 | 
						|
 | 
						|
        public int Cycles { get; } = cycles;
 | 
						|
 | 
						|
        public int Count { get; } = count;
 | 
						|
    }
 | 
						|
} |