Skip to content

Conversation

@pes778864-ai
Copy link

git clone https://github.com/gitlocked/Multiplayer-Browser-FPS
cd Multiplayer-Browser-FPS
npm install
npm run dev

@vercel
Copy link

vercel bot commented Jan 11, 2026

@pes778864-ai is attempting to deploy a commit to the SocketIO Team on Vercel.

A member of the Team first needs to authorize it.

@pes778864-ai
Copy link
Author

npm run dev

1 similar comment
@pes778864-ai
Copy link
Author

npm run dev

@pes778864-ai
Copy link
Author

10

@pes778864-ai
Copy link
Author

git clone https://github.com/gitlocked/Multiplayer-Browser-FPS
cd Multiplayer-Browser-FPS
npm install
npm run dev

@pes778864-ai
Copy link
Author

using System.Collections.Generic;
using UnityEngine;

// Karakter sinifi
[System.Serializable]
public class Character
{
public string charName;
public List abilities; // 3 özəllik
public string ultimateName;
public bool ultimateReady = false;
public int kills = 0; // raundda toplanan kill
}

// Silah sinifi (pul ilə açılır)
[System.Serializable]
public class Weapon
{
public string weaponName;
public bool unlocked = false;
public GameObject weaponModel;
// Animasiya placeholder
public Animator weaponAnimator;
}

// Oyun meneceri
public class GameManager : MonoBehaviour
{
public List characters = new List();
public List weapons = new List();

public int killsForAbility = 2; //

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant