Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Datasets:
FelonieZ
/
DayZ_Scripts
like
0
Follow
FelonieZ DayZ
1
Tasks:
Question Answering
Text Generation
Summarization
Modalities:
Text
Languages:
English
Czech
Size:
1K<n<10K
Tags:
code
License:
cc-by-nc-4.0
Dataset card
Data Studio
Files
Files and versions
Community
main
DayZ_Scripts
/
scripts
/
3_Game
/
DayZ
/
tools
/
Vector2.c
D3ltaQ
Upload 2197 files
24b81cb
verified
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
Safe
121 Bytes
class
Vector2
{
void
Vector2
(
float
value_x,
float
value_y)
{
x = value_x;
y = value_y;
}
float
x;
float
y;
};