diff options
| author | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-17 22:30:35 -0300 |
|---|---|---|
| committer | Matheus <matheus.guedes.mg.m@gmail.com> | 2025-08-17 22:30:35 -0300 |
| commit | c9057bbd88f14a4e0e572c16452c1ab9baebfe2a (patch) | |
| tree | 61e22e427354995cabe878d7a9f14fb9804c9c8f /scripts/actors/Player.cs | |
| parent | 240156765d88db25dd092fc320005cdb5f28d7a7 (diff) | |
Atores agora são criados por código.
Diffstat (limited to 'scripts/actors/Player.cs')
| -rw-r--r-- | scripts/actors/Player.cs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/actors/Player.cs b/scripts/actors/Player.cs index c8abe12..590020d 100644 --- a/scripts/actors/Player.cs +++ b/scripts/actors/Player.cs @@ -4,5 +4,7 @@ using System; [GlobalClass] public partial class Player : Actor { - + public Player(Vector2I initialPosition, DungeonLevel map, ActorDefinition definition) : base(initialPosition, map, definition) + { + } } |
