-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(#63) Shared: extract everything that's possible for clean compilation
- Loading branch information
Showing
35 changed files
with
1,072 additions
and
1,086 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,24 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
|
||
namespace WpfMath | ||
{ | ||
// Single character together with specific font. | ||
internal class CharFont | ||
{ | ||
public CharFont(char character, int fontId) | ||
{ | ||
this.Character = character; | ||
this.FontId = fontId; | ||
} | ||
|
||
public char Character | ||
{ | ||
get; | ||
private set; | ||
} | ||
|
||
public int FontId | ||
{ | ||
get; | ||
private set; | ||
} | ||
} | ||
} | ||
namespace WpfMath | ||
{ | ||
// Single character together with specific font. | ||
internal class CharFont | ||
{ | ||
public CharFont(char character, int fontId) | ||
{ | ||
this.Character = character; | ||
this.FontId = fontId; | ||
} | ||
|
||
public char Character | ||
{ | ||
get; | ||
private set; | ||
} | ||
|
||
public int FontId | ||
{ | ||
get; | ||
private set; | ||
} | ||
} | ||
} |
File renamed without changes.
Oops, something went wrong.