Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Mr BigSock
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Gard Aleksander Furre
Mr BigSock
Commits
acc7297f
Commit
acc7297f
authored
2 years ago
by
Robin Halseth Sandvik
Browse files
Options
Downloads
Patches
Plain Diff
Misc tweaks.
parent
5095e3de
No related branches found
Branches containing commit
No related tags found
1 merge request
!25
Ability rework.
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
MrBigsock/Assets/Code/Core/Abilities/Base/BaseAbility.cs
+4
-4
4 additions, 4 deletions
MrBigsock/Assets/Code/Core/Abilities/Base/BaseAbility.cs
MrBigsock/Assets/Code/Core/Abilities/Base/BaseAttack.cs
+1
-1
1 addition, 1 deletion
MrBigsock/Assets/Code/Core/Abilities/Base/BaseAttack.cs
with
5 additions
and
5 deletions
MrBigsock/Assets/Code/Core/Abilities/Base/BaseAbility.cs
+
4
−
4
View file @
acc7297f
...
...
@@ -19,22 +19,22 @@ namespace BigSock {
/*
The name of the ability.
*/
public
string
Name
{
get
;
set
;
}
public
abstract
string
Name
{
get
;}
/*
The description of the ability.
*/
public
string
Description
{
get
;
set
;
}
public
abstract
string
Description
{
get
;
}
/*
The id of the ability.
*/
public
ulong
Id
{
get
;
set
;
}
public
abstract
ulong
Id
{
get
;
}
/*
The next time the ability has cooled down.
*/
public
DateTime
NextTimeCanUse
{
get
;
set
;
}
=
DateTime
.
Now
;
public
DateTime
NextTimeCanUse
{
get
;
protected
set
;
}
=
DateTime
.
Now
;
/*
Whether the ability is ready.
...
...
This diff is collapsed.
Click to expand it.
MrBigsock/Assets/Code/Core/Abilities/Base/BaseAttack.cs
+
1
−
1
View file @
acc7297f
...
...
@@ -15,7 +15,7 @@ namespace BigSock {
/*
The attack stats of the ability.
*/
public
IAttackStats
AttackStats
{
get
;
set
;
}
public
IAttackStats
AttackStats
{
get
;
protected
set
;
}
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment