-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
14 changed files
with
54 additions
and
1,339 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,44 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace HintServiceMeow.Config.PlayerDisplayConfigs | ||
{ | ||
public abstract class AbstractHintConfig | ||
{ | ||
private HintAlignment alignment; | ||
|
||
private int fontSize; | ||
|
||
private string message; | ||
|
||
public AbstractHintConfig(string message, HintAlignment alignment, int fontSize) | ||
{ | ||
this.message = message; | ||
this.alignment = alignment; | ||
this.fontSize = fontSize; | ||
} | ||
} | ||
|
||
public class HintConfig : AbstractHintConfig | ||
{ | ||
public int yCoordinate; | ||
|
||
public HintConfig(int yCoordinate,string message, HintAlignment alignment, int fontSize) : base(message, alignment, fontSize) | ||
{ | ||
this.yCoordinate = yCoordinate; | ||
} | ||
} | ||
|
||
public class DynamicHintConfig : AbstractHintConfig | ||
{ | ||
public DynamicHintField hintField; | ||
|
||
public DynamicHintConfig(DynamicHintField hintField, string message, HintAlignment alignment, int fontSize, int topYCoordinate, int bottomYCoordinate) : base(message, alignment, fontSize) | ||
{ | ||
this.hintField = hintField; | ||
} | ||
} | ||
} |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.