types

package
v0.0.0-...-009c8ec Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 28, 2025 License: MIT Imports: 0 Imported by: 2

Documentation

Overview

Package types defines the basic structures used throughout the application.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type BankTransaction

type BankTransaction struct {
	UserID        int64 `json:"userID"`
	AmountUSD     int64 `json:"amountUSD"` // Amount in USD (3 decimal places)
	TransactionID int64 `json:"transactionID"`
}

BankTransaction represents a transaction from the bank to buy in-game currency.

type Player

type Player struct {
	ID         int64 `json:"id"`         // ID is the player's unique identifier.
	Balance    int64 `json:"balance"`    // Balance tracks the BEN currency (3 decimal places)
	UsdBalance int64 `json:"usdBalance"` // UsdBalance tracks USD available for exchange
}

Player represents a game player with a unique ID, balance, and inventory of items. It encapsulates the player's state within the game.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL