Initial commit

This commit is contained in:
Mausham
2025-12-26 17:56:05 -08:00
commit 7cb0a26dae
453 changed files with 53483 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using UnityEngine;
namespace Darkmatter.Core
{
public interface IHumonoidAnim
{
void PlayJumpAnim();
void PlayMovementAnim(Vector2 velocity);
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 5a12b671db097ec4ca9a6d81b9843c9e

View File

@@ -0,0 +1,9 @@
using UnityEngine;
namespace Darkmatter.Core
{
public interface IPlayerAnim : IHumonoidAnim
{
void PlayShootAnim();
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: 7b737e58ea9c4574abb8e4c7c5b8eaa0

View File

@@ -0,0 +1,15 @@
using UnityEngine;
namespace Darkmatter.Core
{
public interface IPlayerPawn
{
Camera mainCamera { get; }
bool isGrounded { get; }
void Jump(float jumpForce);
void Move(Vector3 motion);
void SetCameraRotation(float pitch, float yaw);
}
}

View File

@@ -0,0 +1,2 @@
fileFormatVersion: 2
guid: d2804a4028b617e43a4dc4049b19c5b5