-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from cooolbros/main
core
- Loading branch information
Showing
9 changed files
with
125 additions
and
18 deletions.
There are no files selected for viewing
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
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,17 @@ | ||
using System; | ||
|
||
namespace HUDAnimations.Models.Animations; | ||
|
||
public class SetFont : HUDAnimationBase | ||
{ | ||
public override string Type => nameof(SetFont); | ||
public required string Element { get; init; } | ||
public required string Property { get; init; } | ||
public required string Font { get; init; } | ||
public required float Delay { get; init; } | ||
|
||
public override string ToString() | ||
{ | ||
return $"{Type} {Print(Element)} {Print(Property)} {Print(Font)} {Print(Delay)}" + PrintConditional(); | ||
} | ||
} |
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,17 @@ | ||
using System; | ||
|
||
namespace HUDAnimations.Models.Animations; | ||
|
||
public class SetString : HUDAnimationBase | ||
{ | ||
public override string Type => nameof(SetString); | ||
public required string Element { get; init; } | ||
public required string Property { get; init; } | ||
public required string String { get; init; } | ||
public required float Delay { get; init; } | ||
|
||
public override string ToString() | ||
{ | ||
return $"{Type} {Print(Element)} {Print(Property)} {Print(String)} {Print(Delay)}" + PrintConditional(); | ||
} | ||
} |
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,17 @@ | ||
using System; | ||
|
||
namespace HUDAnimations.Models.Animations; | ||
|
||
public class SetTexture : HUDAnimationBase | ||
{ | ||
public override string Type => nameof(SetTexture); | ||
public required string Element { get; init; } | ||
public required string Property { get; init; } | ||
public required string Texture { get; init; } | ||
public required float Delay { get; init; } | ||
|
||
public override string ToString() | ||
{ | ||
return $"{Type} {Print(Element)} {Print(Property)} {Print(Texture)} {Print(Delay)}" + PrintConditional(); | ||
} | ||
} |
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
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
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
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
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