Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ReallyWeirdCat authored May 7, 2023
1 parent 4efbaeb commit d98a047
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ПР12/Animation.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#include "Animation.h"

Animation::Animation() {}

Animation::Animation(int i, int f, int d)
{
index = i;
frames = f;
delay = d;
}
12 changes: 12 additions & 0 deletions ПР12/Animation.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#pragma once

class Animation
{
public:
int index;
int frames;
int delay;

Animation() {};
Animation(int i, int f, int d);
};

0 comments on commit d98a047

Please sign in to comment.