mirror of
				https://github.com/MoleskiCoder/EightBitNet.git
				synced 2025-10-30 20:16:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			399 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			399 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace EightBit
 | |
| {
 | |
|     public class ProfileLineEventArgs(ushort address, string source, long cycles, long count, Dictionary<int, long> cycleDistributions) : CycleCountedEventArgs(cycles, count)
 | |
|     {
 | |
|         public ushort Address { get; } = address;
 | |
| 
 | |
|         public string Source { get; } = source;
 | |
| 
 | |
|         public Dictionary<int, long> CycleDistributions { get; } = cycleDistributions;
 | |
|     }
 | |
| } |