mirror of
https://github.com/ZuneDev/Xune.git
synced 2026-07-27 13:13:10 -07:00
Format RenderApi code
This commit is contained in:
@@ -6,16 +6,16 @@
|
||||
|
||||
public struct KeyValueEntry<K, V>
|
||||
{
|
||||
private K _key;
|
||||
private V _value;
|
||||
private K _key;
|
||||
private V _value;
|
||||
|
||||
public KeyValueEntry(K key, V value)
|
||||
{
|
||||
this._key = key;
|
||||
this._value = value;
|
||||
}
|
||||
public KeyValueEntry(K key, V value)
|
||||
{
|
||||
this._key = key;
|
||||
this._value = value;
|
||||
}
|
||||
|
||||
public K Key => this._key;
|
||||
public K Key => this._key;
|
||||
|
||||
public V Value => this._value;
|
||||
public V Value => this._value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user