Skip to content

Commit

Permalink
(#63) Shared: extract everything that's possible for clean compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ForNeVeR committed Dec 30, 2022
1 parent 2c0daae commit be5428c
Show file tree
Hide file tree
Showing 35 changed files with 1,072 additions and 1,086 deletions.
File renamed without changes.
53 changes: 24 additions & 29 deletions src/WpfMath/CharFont.cs → WpfMath.Shared/CharFont.cs
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.
Loading

0 comments on commit be5428c

Please sign in to comment.